aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2016-08-07 23:17:24 +0200
committerXavier Noria <fxn@hashref.com>2016-08-07 23:17:24 +0200
commitf90ee8ce2733326e9e1bf91426bb401017adb483 (patch)
tree11334a1e3e56412315b1abf56bed4a19d59cd9e7
parent04ef46dd90dfd36c7fc7de65f41962a63b1b9b40 (diff)
downloadrails-f90ee8ce2733326e9e1bf91426bb401017adb483.tar.gz
rails-f90ee8ce2733326e9e1bf91426bb401017adb483.tar.bz2
rails-f90ee8ce2733326e9e1bf91426bb401017adb483.zip
applies project convention for string literals
-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