summaryrefslogtreecommitdiff
path: root/spec/ruby/command_line/frozen_strings_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/command_line/frozen_strings_spec.rb')
-rw-r--r--spec/ruby/command_line/frozen_strings_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/ruby/command_line/frozen_strings_spec.rb b/spec/ruby/command_line/frozen_strings_spec.rb
index b2631a4c76..647b69daed 100644
--- a/spec/ruby/command_line/frozen_strings_spec.rb
+++ b/spec/ruby/command_line/frozen_strings_spec.rb
@@ -22,7 +22,8 @@ end
describe "The --debug flag produces" do
it "debugging info on attempted frozen string modification" do
error_str = ruby_exe(fixture(__FILE__, 'debug_info.rb'), options: '--debug', args: "2>&1")
- error_str.should include("can't modify frozen String, created at ")
+ error_str.should include("can't modify frozen String")
+ error_str.should include("created at")
error_str.should include("command_line/fixtures/debug_info.rb:2")
end
end