aboutsummaryrefslogtreecommitdiffstats
path: root/test/prism/heredoc_dedent_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/prism/heredoc_dedent_test.rb')
-rw-r--r--test/prism/heredoc_dedent_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/prism/heredoc_dedent_test.rb b/test/prism/heredoc_dedent_test.rb
index 9d26febc01..1dd7e4d511 100644
--- a/test/prism/heredoc_dedent_test.rb
+++ b/test/prism/heredoc_dedent_test.rb
@@ -2,13 +2,13 @@
require_relative "test_helper"
-module YARP
+module Prism
class HeredocDedentTest < TestCase
filepath = File.expand_path("fixtures/tilde_heredocs.txt", __dir__)
File.read(filepath).split(/(?=\n)\n(?=<)/).each_with_index do |heredoc, index|
define_method "test_heredoc_#{index}" do
- node = YARP.parse(heredoc).value.statements.body.first
+ node = Prism.parse(heredoc).value.statements.body.first
if node.is_a? StringNode
actual = node.unescaped
else