Commit 71b986dc authored by Maurelian's avatar Maurelian Committed by GitHub

unskip tests that were waiting for an update to smock (#169)

parent de49aa9b
......@@ -161,8 +161,7 @@ describe('OVM_SequencerEntrypoint', () => {
expect(ovmCALL._calldata).to.equal(expectedEOACalldata)
})
// TODO: These tests should pass when smock is updated to >=0.1.0
it.skip('should revert if TransactionType is >2', async () => {
it('should revert if TransactionType is >2', async () => {
const calldata = '0x03'
await expect(
Helper_PrecompileCaller.callPrecompile(
......@@ -172,7 +171,7 @@ describe('OVM_SequencerEntrypoint', () => {
).to.be.reverted
})
it.skip('should revert if TransactionType is 1', async () => {
it('should revert if TransactionType is 1', async () => {
const calldata = '0x01'
await expect(
Helper_PrecompileCaller.callPrecompile(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment