aboutsummaryrefslogtreecommitdiff
path: root/test/common/seekablesubreadstream.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/seekablesubreadstream.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/seekablesubreadstream.h')
-rw-r--r--test/common/seekablesubreadstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/common/seekablesubreadstream.h b/test/common/seekablesubreadstream.h
index 354e2dd5c1..7c3a3249c4 100644
--- a/test/common/seekablesubreadstream.h
+++ b/test/common/seekablesubreadstream.h
@@ -4,7 +4,7 @@
class SeekableSubReadStreamTestSuite : public CxxTest::TestSuite {
public:
- void test_traverse(void) {
+ void test_traverse() {
byte contents[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Common::MemoryReadStream ms(contents, 10);
@@ -28,7 +28,7 @@ class SeekableSubReadStreamTestSuite : public CxxTest::TestSuite {
TS_ASSERT( ssrs.eos() );
}
- void test_seek(void) {
+ void test_seek() {
byte contents[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Common::MemoryReadStream ms(contents, 10);