diff options
author | sfan5 <sfan5@live.de> | 2022-05-01 13:43:29 +0200 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2022-05-21 17:46:10 +0200 |
commit | 70dc23f996683a59dd85db74e8f15e49c4f7b9fd (patch) | |
tree | 33a320c9d009303d841f266609c3947bf5ea7465 /src/unittest/test.h | |
parent | 4e9e230e34912d08ec0f0fc01d14ef80654c7cac (diff) | |
download | minetest-70dc23f996683a59dd85db74e8f15e49c4f7b9fd.tar.xz |
Improve testSerializeJsonString unit tests
this also removes the requirement that / is escaped, there is
no reason for doing so.
Diffstat (limited to 'src/unittest/test.h')
-rw-r--r-- | src/unittest/test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unittest/test.h b/src/unittest/test.h index 1102f6d33..79ea09471 100644 --- a/src/unittest/test.h +++ b/src/unittest/test.h @@ -80,7 +80,7 @@ class TestFailedException : public std::exception { << #expected << std::endl \ << " at " << fs::GetFilenameFromPath(__FILE__) << ":" \ << __LINE__ << std::endl \ - << " actual: " << a << std::endl << " expected: " \ + << " actual : " << a << std::endl << " expected: " \ << e << std::endl; \ throw TestFailedException(); \ } \ |