Fix test expectation update

This commit is contained in:
a3d4 2020-08-29 21:57:37 +02:00
parent 98cc1d9994
commit 6336aa5aba

View File

@ -300,7 +300,8 @@ string TestFunctionCall::formatRawParameters(
{
if (param.format.newline)
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 (&param != &_params.back())
os << ", ";
}