From 700512a53f29215350e2fdab3b52f5e0e6cb40ce Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 9 Apr 2013 10:49:58 +0300 Subject: [PATCH] use spaces in strings --- test/testmemleak.cpp | 2 +- test/testother.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/testmemleak.cpp b/test/testmemleak.cpp index 53e5beab3..4dd908ea5 100644 --- a/test/testmemleak.cpp +++ b/test/testmemleak.cpp @@ -2608,7 +2608,7 @@ private: check("class Pool{\n" " int* GetNewObj()\n" " {\n" - " return new int;\n" + " return new int;\n" " }\n" "};\n" "void foo(){\n" diff --git a/test/testother.cpp b/test/testother.cpp index 2dea31356..661a6cc2e 100644 --- a/test/testother.cpp +++ b/test/testother.cpp @@ -7113,7 +7113,7 @@ private: " int x;\n" " x = 1;\n" " if (y)\n" // <-- cppcheck does not know anything about 'y' - " x = 2;\n" + " x = 2;\n" " return x + 1;\n" "}"); ASSERT_EQUALS("", errout.str());