mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix test expectation update
This commit is contained in:
parent
98cc1d9994
commit
6336aa5aba
@ -300,7 +300,8 @@ string TestFunctionCall::formatRawParameters(
|
|||||||
{
|
{
|
||||||
if (param.format.newline)
|
if (param.format.newline)
|
||||||
os << endl << _linePrefix << "// ";
|
os << endl << _linePrefix << "// ";
|
||||||
os << param.rawString;
|
for (auto const c: param.rawString)
|
||||||
|
os << (c >= ' ' ? string(1, c) : "\\x" + toHex(static_cast<uint8_t>(c)));
|
||||||
if (¶m != &_params.back())
|
if (¶m != &_params.back())
|
||||||
os << ", ";
|
os << ", ";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user