@0x/contracts-asset-proxy: Fix incorrect comments in ERC20BridgeProxy tests.

This commit is contained in:
Lawrence Forman
2019-09-27 19:49:23 -04:00
parent 3e2e05caf2
commit 1959d149f8

View File

@@ -244,8 +244,6 @@ blockchainTests.resets.only('ERC20BridgeProxy unit tests', env => {
}),
}),
});
// This will actually revert when the AP tries to decode the return
// value.
return expect(tx).to.revertWith(revertError);
});
@@ -259,8 +257,6 @@ blockchainTests.resets.only('ERC20BridgeProxy unit tests', env => {
}),
}),
});
// This will actually revert when the AP tries to decode the return
// value.
return expect(tx).to.revertWith('BRIDGE_UNDERPAY');
});
@@ -275,8 +271,6 @@ blockchainTests.resets.only('ERC20BridgeProxy unit tests', env => {
}),
}),
});
// This will actually revert when the AP tries to decode the return
// value.
return expect(tx).to.revertWith('BRIDGE_UNDERPAY');
});
});