aboutsummaryrefslogtreecommitdiff
path: root/test/common/bufferedreadstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/common/bufferedreadstream.h')
-rw-r--r--test/common/bufferedreadstream.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/common/bufferedreadstream.h b/test/common/bufferedreadstream.h
index 15026aa8d6..c171836466 100644
--- a/test/common/bufferedreadstream.h
+++ b/test/common/bufferedreadstream.h
@@ -15,16 +15,16 @@ class BufferedReadStreamTestSuite : public CxxTest::TestSuite {
byte i, b;
for (i = 0; i < 10; ++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());
}
};