aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/ts_isolated.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/test/ts_isolated.rb')
-rw-r--r--actionpack/test/ts_isolated.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/ts_isolated.rb b/actionpack/test/ts_isolated.rb
index 595b4018e9..c44c5d8968 100644
--- a/actionpack/test/ts_isolated.rb
+++ b/actionpack/test/ts_isolated.rb
@@ -9,7 +9,7 @@ class TestIsolated < ActiveSupport::TestCase
define_method("test #{file}") do
command = "#{ruby} -Ilib:test #{file}"
result = silence_stderr { `#{command}` }
- assert_block("#{command}\n#{result}") { $?.to_i.zero? }
+ assert $?.to_i.zero?, "#{command}\n#{result}"
end
end
end