From 6df2cd89349980ae577255df6a619886bb91702c Mon Sep 17 00:00:00 2001 From: hesiod Date: Sun, 22 Jun 2014 13:51:33 +0200 Subject: [PATCH] Add a space before writing "OK!" --- cxxtest/ErrorFormatter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cxxtest/ErrorFormatter.h b/cxxtest/ErrorFormatter.h index 81582a3..528ecd3 100644 --- a/cxxtest/ErrorFormatter.h +++ b/cxxtest/ErrorFormatter.h @@ -111,7 +111,7 @@ class ErrorFormatter : public TestListener { if (!tracker().failedTests()) { - (*_o) << "OK!" << endl; + (*_o) << " OK!" << endl; return; } newLine();