diff options
Diffstat (limited to 'spec/ruby/language')
-rw-r--r-- | spec/ruby/language/constants_spec.rb | 4 | ||||
-rw-r--r-- | spec/ruby/language/precedence_spec.rb | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/spec/ruby/language/constants_spec.rb b/spec/ruby/language/constants_spec.rb index 98077171ec..4b674a35f5 100644 --- a/spec/ruby/language/constants_spec.rb +++ b/spec/ruby/language/constants_spec.rb @@ -643,7 +643,9 @@ describe "Module#private_constant marked constants" do lambda do ConstantVisibility::PrivConstModuleChild::PRIVATE_CONSTANT_MODULE end.should raise_error(NameError) {|e| - e.receiver.should == ConstantVisibility::PrivConstModule + ruby_bug "#14853", ""..."2.5.2" do + e.receiver.should == ConstantVisibility::PrivConstModule + end e.name.should == :PRIVATE_CONSTANT_MODULE } end diff --git a/spec/ruby/language/precedence_spec.rb b/spec/ruby/language/precedence_spec.rb index 19edaf2efa..5966a4c2a4 100644 --- a/spec/ruby/language/precedence_spec.rb +++ b/spec/ruby/language/precedence_spec.rb @@ -301,13 +301,9 @@ describe "Operators" do from = 1 to = 2 # These are Range instances, not flip-flop - @verbose = $VERBOSE - $VERBOSE = nil - begin + suppress_warning do (eval("from..to") ? 3 : 4).should == 3 (eval("from...to") ? 3 : 4).should == 3 - ensure - $VERBOSE = @verbose end end |