aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_pattern_matching.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-30 09:40:23 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2019-06-30 11:45:37 +0900
commitad3820886b8bd13bb6dbb784ba999b26ac65461c (patch)
tree2528335b2dc7759e7f99f3ae94ed860ae51d73d2 /test/ruby/test_pattern_matching.rb
parent409b0ec4c3c4878c0ba164d1303de67787157808 (diff)
downloadruby-ad3820886b8bd13bb6dbb784ba999b26ac65461c.tar.gz
Fixed an assertion
Diffstat (limited to 'test/ruby/test_pattern_matching.rb')
-rw-r--r--test/ruby/test_pattern_matching.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_pattern_matching.rb b/test/ruby/test_pattern_matching.rb
index bba83f662e..988a9dfe39 100644
--- a/test/ruby/test_pattern_matching.rb
+++ b/test/ruby/test_pattern_matching.rb
@@ -1033,7 +1033,7 @@ END
assert_block do
case {}
in {}
- $keys == nil
+ C.keys == nil
end
end