aboutsummaryrefslogtreecommitdiff
path: root/test/common/array.h
diff options
context:
space:
mode:
authorEugene Sandulenko2005-07-30 21:11:48 +0000
committerEugene Sandulenko2005-07-30 21:11:48 +0000
commit6b4484472b79dc7ea7d1ce545a28fba7d3b7696f (patch)
treec44c4e61f18ddd537f7082cb48869cf33d422fbd /test/common/array.h
parent86ab70b149e5cd00cf54f2e41896e2c4e16795e4 (diff)
downloadscummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.gz
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.tar.bz2
scummvm-rg350-6b4484472b79dc7ea7d1ce545a28fba7d3b7696f.zip
Remove trailing whitespaces.
svn-id: r18604
Diffstat (limited to 'test/common/array.h')
-rw-r--r--test/common/array.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/common/array.h b/test/common/array.h
index 1f24dfd6b6..65f5bff490 100644
--- a/test/common/array.h
+++ b/test/common/array.h
@@ -3,7 +3,7 @@
#include "common/stdafx.h"
#include "common/array.h"
-class ArrayTestSuite : public CxxTest::TestSuite
+class ArrayTestSuite : public CxxTest::TestSuite
{
public:
void test_isEmpty_clear( void )
@@ -26,10 +26,10 @@ class ArrayTestSuite : public CxxTest::TestSuite
array.push_back(17);
array.push_back(33);
array.push_back(-11);
-
+
// Iterate over the array and verify that we encounter the elements in
// the order we expect them to be.
-
+
iter = array.begin();
TS_ASSERT( *iter == 17 );
@@ -54,7 +54,7 @@ class ArrayTestSuite : public CxxTest::TestSuite
array.push_back(17);
array.push_back(33);
array.push_back(-11);
-
+
TS_ASSERT( array[0] == 17 );
TS_ASSERT( array[1] == 33 );
TS_ASSERT( array[2] == -11 );