From 91d62c0a617cd2cefb69c2bb2339cfd08641d36d Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Tue, 9 Jun 2009 15:34:02 +0000 Subject: Changed some lines to tabs instead of whitespaces for identation. svn-id: r41401 --- test/common/hashmap.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test') diff --git a/test/common/hashmap.h b/test/common/hashmap.h index 13f630430c..6476005eaf 100644 --- a/test/common/hashmap.h +++ b/test/common/hashmap.h @@ -112,20 +112,20 @@ class HashMapTestSuite : public CxxTest::TestSuite // NB: The usefulness of this example depends strongly on the // specific hashmap implementation. // It is constructed to insert multiple colliding elements. - Common::HashMap h; - h[5] = 1; - h[32+5] = 1; - h[64+5] = 1; - h[128+5] = 1; + Common::HashMap h; + h[5] = 1; + h[32+5] = 1; + h[64+5] = 1; + h[128+5] = 1; TS_ASSERT(h.contains(5)); TS_ASSERT(h.contains(32+5)); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); - h.erase(32+5); + h.erase(32+5); TS_ASSERT(h.contains(5)); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); - h.erase(5); + h.erase(5); TS_ASSERT(h.contains(64+5)); TS_ASSERT(h.contains(128+5)); h[32+5] = 1; -- cgit v1.2.3