mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #11976 from ethereum/json-cleanup
Some cleanup and testing for JSON
This commit is contained in:
@@ -63,8 +63,8 @@ public:
|
||||
|
||||
BOOST_CHECK_MESSAGE(
|
||||
expectedDocumentation == generatedDocumentation,
|
||||
"Expected:\n" << expectedDocumentation.toStyledString() <<
|
||||
"\n but got:\n" << generatedDocumentation.toStyledString()
|
||||
"Expected:\n" << util::jsonPrettyPrint(expectedDocumentation) <<
|
||||
"\n but got:\n" << util::jsonPrettyPrint(generatedDocumentation)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2089,8 +2089,8 @@ BOOST_AUTO_TEST_CASE(dev_explicit_inehrit_complex)
|
||||
|
||||
BOOST_CHECK_MESSAGE(
|
||||
expectedDocumentation == generatedDocumentation,
|
||||
"Expected:\n" << expectedDocumentation.toStyledString() <<
|
||||
"\n but got:\n" << generatedDocumentation.toStyledString()
|
||||
"Expected:\n" << util::jsonPrettyPrint(expectedDocumentation) <<
|
||||
"\n but got:\n" << util::jsonPrettyPrint(generatedDocumentation)
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user