aboutsummaryrefslogtreecommitdiff
path: root/test/common/stream.h
diff options
context:
space:
mode:
authorMax Horn2009-04-20 19:26:50 +0000
committerMax Horn2009-04-20 19:26:50 +0000
commitfaa911794953679a1fff24999878f79612dfc7f3 (patch)
tree5b05bb39fc9b395f6381ebf81f7f001d8f07a5ca /test/common/stream.h
parent6a7bb77305dc280e6af2afb4beb5cc06ca6350b8 (diff)
downloadscummvm-rg350-faa911794953679a1fff24999878f79612dfc7f3.tar.gz
scummvm-rg350-faa911794953679a1fff24999878f79612dfc7f3.tar.bz2
scummvm-rg350-faa911794953679a1fff24999878f79612dfc7f3.zip
TESTS: Code formatting; also changed some TS_ASSERT to TS_ASSERT_EQUALS
svn-id: r40026
Diffstat (limited to 'test/common/stream.h')
-rw-r--r--test/common/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/stream.h b/test/common/stream.h
index 4d332b8925..4e0d608920 100644
--- a/test/common/stream.h
+++ b/test/common/stream.h
@@ -4,7 +4,7 @@
class ReadLineStreamTestSuite : public CxxTest::TestSuite {
public:
- void test_readline(void) {
+ void test_readline() {
byte contents[] = { 'a', 'b', '\n', '\n', 'c', '\n' };
Common::MemoryReadStream ms(contents, sizeof(contents));
@@ -26,7 +26,7 @@ class ReadLineStreamTestSuite : public CxxTest::TestSuite {
TS_ASSERT(ms.eos());
}
- void test_readline2(void) {
+ void test_readline2() {
byte contents[] = { 'a', 'b', '\n', '\n', 'c' };
Common::MemoryReadStream ms(contents, sizeof(contents));