diff options
author | murphy <murphy@rubychan.de> | 2010-01-20 02:06:45 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2010-01-20 02:06:45 +0000 |
commit | 5d647876e01a0f279b8a434107ff89357d88e3ec (patch) | |
tree | 38b882eb27e8ae5e498353d29b5cafeddf2270df | |
parent | 815597727685329db0f29bdd4ec7d638550b4152 (diff) | |
download | coderay-5d647876e01a0f279b8a434107ff89357d88e3ec.tar.gz |
A little fix in the color output of the test suite.
-rw-r--r-- | test/scanners/coderay_suite.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scanners/coderay_suite.rb b/test/scanners/coderay_suite.rb index d233401..cf0b92b 100644 --- a/test/scanners/coderay_suite.rb +++ b/test/scanners/coderay_suite.rb @@ -354,7 +354,7 @@ module CodeRay end else File.open(expected_filename, 'wb') { |f| f.write result } - print "\b" * 'complete...'.size, "new test, ".blue + print "\b" * 'complete...'.size, "new test".blue, ", ".green ok = true end |