summaryrefslogtreecommitdiff
path: root/spec/ruby/language/constants_spec.rb
diff options
context:
space:
mode:
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