Skip to content

Commit 916dcf8

Browse files
committed
Remove superfluous log messages from tests
1 parent 07cc9a2 commit 916dcf8

File tree

4 files changed

+0
-13
lines changed

4 files changed

+0
-13
lines changed

test/beast/websocket/_detail_decorator.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,6 @@ class decorator_test : public unit_test::suite
139139
void
140140
run() override
141141
{
142-
log << "sizeof(decorator)==" << sizeof(decorator) << "\n";
143142
testDecorator();
144143
}
145144
};

test/beast/websocket/stream.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,6 @@ class stream_test : public websocket_test_suite
189189
stream<test::stream&>>::value);
190190
#endif
191191

192-
log << "sizeof(websocket::stream) == " <<
193-
sizeof(websocket::stream<test::stream&>) << std::endl;
194-
log << "sizeof(websocket::stream::impl_type) == " <<
195-
sizeof(websocket::stream<test::stream&>::impl_type) << std::endl;
196-
197192
testOptions();
198193
testJavadoc();
199194
}

test/beast/zlib/deflate_stream.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -638,10 +638,6 @@ class deflate_stream_test : public beast::unit_test::suite
638638
void
639639
run() override
640640
{
641-
log <<
642-
"sizeof(deflate_stream) == " <<
643-
sizeof(deflate_stream) << std::endl;
644-
645641
testDeflate(zlib_compressor);
646642
testDeflate(beast_compressor);
647643
testInvalidSettings(zlib_compressor);

test/beast/zlib/inflate_stream.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -637,9 +637,6 @@ class inflate_stream_test : public beast::unit_test::suite
637637
void
638638
run() override
639639
{
640-
log <<
641-
"sizeof(inflate_stream) == " <<
642-
sizeof(inflate_stream) << std::endl;
643640
testInflate(zlib_decompressor);
644641
testInflate(beast_decompressor);
645642
testInflateErrors(zlib_decompressor);

0 commit comments

Comments
 (0)