aboutsummaryrefslogtreecommitdiff
path: root/test/common/subreadstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/subreadstream.h')
-rw-r--r--test/common/subreadstream.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/common/subreadstream.h b/test/common/subreadstream.h
index f68a9860a5..15d959892f 100644
--- a/test/common/subreadstream.h
+++ b/test/common/subreadstream.h
@@ -15,14 +15,14 @@ class SubReadStreamTestSuite : public CxxTest::TestSuite {
int i;
byte b;
for (i = 0; i < end; ++i) {
- TS_ASSERT( !srs.eos() );
+ TS_ASSERT(!srs.eos());
b = srs.readByte();
- TS_ASSERT_EQUALS( i, b );
+ TS_ASSERT_EQUALS(i, b);
}
- TS_ASSERT( !srs.eos() );
+ TS_ASSERT(!srs.eos());
b = srs.readByte();
- TS_ASSERT( srs.eos() );
+ TS_ASSERT(srs.eos());
}
};