aboutsummaryrefslogtreecommitdiff
path: root/test/common/stream.h
diff options
context:
space:
mode:
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));