aboutsummaryrefslogtreecommitdiffstats
path: root/test/prism/bom_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/prism/bom_test.rb')
-rw-r--r--test/prism/bom_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/prism/bom_test.rb b/test/prism/bom_test.rb
index 3a4e04a900..1525caf458 100644
--- a/test/prism/bom_test.rb
+++ b/test/prism/bom_test.rb
@@ -6,7 +6,7 @@ return if RUBY_ENGINE == "jruby" || RUBY_ENGINE == "truffleruby"
require_relative "test_helper"
-module YARP
+module Prism
class BOMTest < TestCase
def test_ident
assert_bom("foo")
@@ -53,7 +53,7 @@ module YARP
def assert_bom(source)
bommed = "\xEF\xBB\xBF#{source}"
- assert_equal YARP.lex_ripper(bommed), YARP.lex_compat(bommed).value
+ assert_equal Prism.lex_ripper(bommed), Prism.lex_compat(bommed).value
end
end
end