aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/test/application/runner_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/test/application/runner_test.rb b/railties/test/application/runner_test.rb
index a9f81c1f5c..4dc766dfda 100644
--- a/railties/test/application/runner_test.rb
+++ b/railties/test/application/runner_test.rb
@@ -76,7 +76,7 @@ module ApplicationTests
def test_runner_detects_syntax_errors
output = Dir.chdir(app_path) { `bin/rails runner "puts 'hello world" 2>&1` }
assert_not $?.success?
- assert_match 'unterminated string meets end of file', output
+ assert_match "unterminated string meets end of file", output
end
def test_runner_detects_bad_script_name