aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/tests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/tests.cpp')
-rw-r--r--src/tests/tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/tests.cpp b/src/tests/tests.cpp
index 55c9e3824..294ef303b 100644
--- a/src/tests/tests.cpp
+++ b/src/tests/tests.cpp
@@ -163,8 +163,8 @@ bool Test::Result::test_eq(const char* producer, const char* what,
bits_different += Botan::hamming_weight(xor_diff[i]);
}
- err << "Produced: " << Botan::hex_encode(produced, produced_size) << "\n"
- << "Expected: " << Botan::hex_encode(expected, expected_size);
+ err << "\nProduced: " << Botan::hex_encode(produced, produced_size)
+ << "\nExpected: " << Botan::hex_encode(expected, expected_size);
if(bits_different > 0)
{