summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2023-11-02 15:13:40 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-11-02 15:13:40 +0900
commit7149543f249d7e29d223fde860770fded5762f0b (patch)
treef28daf2ccf34a1d6eb91385d8b5b3a9d319dbe69 /test
parent1925c6d555e40b7c6c36ac9665b4cffed4b1d4cb (diff)
Added TestRipper namespace to test_call_colon2
Diffstat (limited to 'test')
-rw-r--r--test/ripper/test_parser_events.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ripper/test_parser_events.rb b/test/ripper/test_parser_events.rb
index 834ecec58a..8a7782820b 100644
--- a/test/ripper/test_parser_events.rb
+++ b/test/ripper/test_parser_events.rb
@@ -513,7 +513,7 @@ class TestRipper::ParserEvents < Test::Unit::TestCase
end
end
- parser = DummyParser.new("a::b").extend(hook)
+ parser = TestRipper::DummyParser.new("a::b").extend(hook)
assert_equal '[call(vcall((ident: "a")),(method: (op: "::")),(ident: "b"))]', parser.parse.to_s
end