In @0x/dev-utils: Tweak equality assertion failure actual and expected rendering to be more readable

This commit is contained in:
Lawrence Forman
2019-04-04 15:55:28 -04:00
committed by Amir Bandeali
parent 162a812189
commit 94a91ed5c8

View File

@@ -127,8 +127,8 @@ function compareRevertErrors(
actual.equals(expected),
`${actual.toString()} != ${expected.toString()}`,
`${actual.toString()} == ${expected.toString()}`,
expected,
actual,
expected.toString(),
actual.toString(),
);
// Return true to signal we handled it.
return true;