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
commit b65a165da1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;