diff options
author | Xavier Noria <fxn@hashref.com> | 2016-08-07 23:17:24 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2016-08-07 23:17:24 +0200 |
commit | f90ee8ce2733326e9e1bf91426bb401017adb483 (patch) | |
tree | 11334a1e3e56412315b1abf56bed4a19d59cd9e7 /railties/test | |
parent | 04ef46dd90dfd36c7fc7de65f41962a63b1b9b40 (diff) | |
download | rails-f90ee8ce2733326e9e1bf91426bb401017adb483.tar.gz rails-f90ee8ce2733326e9e1bf91426bb401017adb483.tar.bz2 rails-f90ee8ce2733326e9e1bf91426bb401017adb483.zip |
applies project convention for string literals
Diffstat (limited to 'railties/test')
-rw-r--r-- | railties/test/application/runner_test.rb | 2 |
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 |