Skip to content

Commit

Permalink
unskip tests that were waiting for an update to smock (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
maurelian authored Jan 7, 2021
1 parent de49aa9 commit 71b986d
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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(
Expand Down

0 comments on commit 71b986d

Please sign in to comment.