1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Fix broken title reporter test
Fix a typo in required test output for ProcTitleReporterTest
Author: Tim Potter <tpot@hp.com>
Last Update: 2014-09-27
--- ruby-metriks-0.9.9.6.orig/test/proc_title_reporter_test.rb
+++ ruby-metriks-0.9.9.6/test/proc_title_reporter_test.rb
@@ -20,6 +20,6 @@ class ProcTitleReporterTest < Test::Unit
title = @reporter.send(:generate_title)
- assert_equal 'test: 50.3/sec', title
+ assert_equal 'test: 50.3sec', title
end
-end
\ No newline at end of file
+end
|