From 6b4484472b79dc7ea7d1ce545a28fba7d3b7696f Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 30 Jul 2005 21:11:48 +0000 Subject: Remove trailing whitespaces. svn-id: r18604 --- test/common/list.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/common/list.h') diff --git a/test/common/list.h b/test/common/list.h index 512a4d947e..3026b204c5 100644 --- a/test/common/list.h +++ b/test/common/list.h @@ -3,7 +3,7 @@ #include "common/stdafx.h" #include "common/list.h" -class ListTestSuite : public CxxTest::TestSuite +class ListTestSuite : public CxxTest::TestSuite { public: void test_isEmpty_clear( void ) @@ -26,10 +26,10 @@ class ListTestSuite : public CxxTest::TestSuite list.push_back(17); list.push_back(33); list.push_back(-11); - + // Iterate over the list and verify that we encounter the elements in // the order we expect them to be. - + iter = list.begin(); TS_ASSERT( *iter == 17 ); @@ -56,16 +56,16 @@ class ListTestSuite : public CxxTest::TestSuite list.push_back(17); list.push_back(33); list.push_back(-11); - + // Iterate to after the second element iter = list.begin(); ++iter; ++iter; - + // Now insert some values here list.insert(iter, 42); list.insert(iter, 43); - + iter = list.begin(); TS_ASSERT( *iter == 17 ); -- cgit v1.2.3