diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2016-12-01 17:14:19 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2017-01-25 18:01:52 +0800 |
commit | 9ca0fde853735d183c3db5c77c83de7c70c4ec98 (patch) | |
tree | 2af967b1e9a6e405197a28453d8423355a8637c4 /test | |
parent | 5738e865d5375751332d8f884f2b00b006d76945 (diff) | |
download | dexon-solidity-9ca0fde853735d183c3db5c77c83de7c70c4ec98.tar.gz dexon-solidity-9ca0fde853735d183c3db5c77c83de7c70c4ec98.tar.zst dexon-solidity-9ca0fde853735d183c3db5c77c83de7c70c4ec98.zip |
Fix and better output for tests
Diffstat (limited to 'test')
-rw-r--r-- | test/libsolidity/SolidityNatspecJSON.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/libsolidity/SolidityNatspecJSON.cpp b/test/libsolidity/SolidityNatspecJSON.cpp index c59b30c3..0657c321 100644 --- a/test/libsolidity/SolidityNatspecJSON.cpp +++ b/test/libsolidity/SolidityNatspecJSON.cpp @@ -56,7 +56,7 @@ public: m_reader.parse(_expectedDocumentationString, expectedDocumentation); BOOST_CHECK_MESSAGE( expectedDocumentation == generatedDocumentation, - "Expected " << expectedDocumentation.toStyledString() << + "Expected:\n" << expectedDocumentation.toStyledString() << "\n but got:\n" << generatedDocumentation.toStyledString() ); } |