summaryrefslogtreecommitdiff
path: root/tool/lib/core_assertions.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-04 16:59:18 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-08-04 16:59:18 +0900
commit1f2b3f2529e39d8a69709a9f4ce6cf7153877fbe (patch)
treeaf08cac6633caa5e702e56200c75c19bba0bdf79 /tool/lib/core_assertions.rb
parent6e8bbabc2b49330c7fcdf9c933fef33edaa33f5d (diff)
Remove an extraneous escape
Since a3fb97465df3, this string is not inside the here-document.
Diffstat (limited to 'tool/lib/core_assertions.rb')
-rw-r--r--tool/lib/core_assertions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/core_assertions.rb b/tool/lib/core_assertions.rb
index c0c69e0ab5..eb064123bd 100644
--- a/tool/lib/core_assertions.rb
+++ b/tool/lib/core_assertions.rb
@@ -263,7 +263,7 @@ module Test
include(*Test::Unit::TestCase.ancestors.select {|c| !c.is_a?(Class) })
out = out ? IO.new(out, 'w') : STDOUT
at_exit {
- out.puts [Marshal.dump($!)].pack('m'), "assertions=\#{self._assertions}"
+ out.puts [Marshal.dump($!)].pack('m'), "assertions=#{self._assertions}"
}
Test::Unit::Runner.class_variable_set(:@@stop_auto_run, true) if defined?(Test::Unit::Runner)
end