aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/language/constants_spec.rb
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 11:37:31 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-06-27 11:37:31 +0000
commitfc1f3f14d386b557281ff9a8f19da060befe182e (patch)
tree3ba2c06f27bee1ac3de0fa21bce25ac4035bbc4b /spec/ruby/language/constants_spec.rb
parent80fdfbf8099d8e802b9faaef2eda1ffdb787d1ce (diff)
downloadruby-fc1f3f14d386b557281ff9a8f19da060befe182e.tar.gz
Update to ruby/spec@41068a6
* Only small fixes to specs from CRuby to review the diff more easily. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/language/constants_spec.rb')
-rw-r--r--spec/ruby/language/constants_spec.rb4
1 files changed, 3 insertions, 1 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