diff options
Diffstat (limited to 'test/prism/fuzzer_test.rb')
-rw-r--r-- | test/prism/fuzzer_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/prism/fuzzer_test.rb b/test/prism/fuzzer_test.rb index f4abcd4ac8..04e45518b1 100644 --- a/test/prism/fuzzer_test.rb +++ b/test/prism/fuzzer_test.rb @@ -2,11 +2,11 @@ require_relative "test_helper" -module YARP +module Prism # These tests are simply to exercise snippets found by the fuzzer that caused invalid memory access. class FuzzerTest < TestCase def self.snippet(name, source) - define_method(:"test_fuzzer_#{name}") { YARP.dump(source) } + define_method(:"test_fuzzer_#{name}") { Prism.dump(source) } end snippet "incomplete global variable", "$" |