Merge pull request #8392 from ethereum/isoltest-output-fix

[isoltest] Fix raw bytes output in warning on expectation mismatch
This commit is contained in:
chriseth
2020-02-27 14:47:58 +01:00
committed by GitHub
+1 -1
View File
@@ -225,7 +225,7 @@ string BytesUtils::formatRawBytes(
{
bytes byteRange{it, it + static_cast<long>(parameter.abiType.size)};
os << _linePrefix << formatBytes(byteRange, parameter.abiType);
os << _linePrefix << byteRange;
if (&parameter != &parameters.back())
os << endl;