Skip to content

Commit

Permalink
test: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
delehef committed Dec 6, 2023
1 parent 2622e5d commit 3efea92
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

package net.consensys.linea.zktracer.module.hub;

import static org.assertj.core.api.Assertions.assertThat;

import java.util.List;

import net.consensys.linea.zktracer.opcode.OpCode;
Expand Down Expand Up @@ -85,7 +87,7 @@ void test() {
.zkTracerValidator(
zkTracer -> {
// Ensure we don't have any superfluous STOP
assert zkTracer.getHub().state().currentTxTrace().getTrace().size() == 11;
assertThat(zkTracer.getHub().state().currentTxTrace().getTrace().size()).isEqualTo(10);
})
.build()
.run();
Expand Down

0 comments on commit 3efea92

Please sign in to comment.