aboutsummaryrefslogtreecommitdiff
path: root/test/common
diff options
context:
space:
mode:
authorTobia Tesan2013-06-02 21:29:15 +0200
committerTobia Tesan2013-07-10 13:22:57 +0200
commitd2c85e19eb62f2e9a8ba3b1251ee42a1d68e92a5 (patch)
treef7e8618a042335fe52f025bd76c92afdeebf3ac4 /test/common
parente9406fad246efe975ce63dab207be76edf3e0998 (diff)
downloadscummvm-rg350-d2c85e19eb62f2e9a8ba3b1251ee42a1d68e92a5.tar.gz
scummvm-rg350-d2c85e19eb62f2e9a8ba3b1251ee42a1d68e92a5.tar.bz2
scummvm-rg350-d2c85e19eb62f2e9a8ba3b1251ee42a1d68e92a5.zip
TEST: Whitespaces in test/common/
Diffstat (limited to 'test/common')
-rw-r--r--test/common/hash-str.h2
-rw-r--r--test/common/util.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/common/hash-str.h b/test/common/hash-str.h
index 9eadea5755..0391e7167f 100644
--- a/test/common/hash-str.h
+++ b/test/common/hash-str.h
@@ -150,7 +150,7 @@ class HashStrTestSuite : public CxxTest::TestSuite {
char doublespaced[] = "test ";
char tabbed[] = "test\t";
- Common::Hash<const char*> h;
+ Common::Hash<const char *> h;
TS_ASSERT_EQUALS(h(lower), h(lower1));
TS_ASSERT_DIFFERS(h(mixed), h(lower));
TS_ASSERT_DIFFERS(h(spaced), h(lower));
diff --git a/test/common/util.h b/test/common/util.h
index 05e6243885..cd65307612 100644
--- a/test/common/util.h
+++ b/test/common/util.h
@@ -55,7 +55,7 @@ class UtilTestSuite : public CxxTest::TestSuite {
bool valasbool;
bool success;
- Common::String string_5 ("1");
+ Common::String string_5("1");
success = Common::parseBool(string_5, valasbool);
TS_ASSERT_EQUALS(success, 1);
TS_ASSERT_EQUALS(valasbool, 1);