Skip to content

Commit

Permalink
Fix unit and integration tests. Some checks were deleted from the int…
Browse files Browse the repository at this point in the history
…egration test because they were not relevant.

Signed-off-by: Ameziane H. <[email protected]>
  • Loading branch information
ahamlat committed Jan 3, 2025
1 parent 9bcbda3 commit 3a7695d
Show file tree
Hide file tree
Showing 6 changed files with 2,914 additions and 6,006 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,11 @@ public void shouldTraceTheTransactionUsingTheTransactionTracer() {
assertThat(transactionResult.getStructLogs().size()).isEqualTo(1);
assertThat(transactionResult.getStructLogs().get(0).stack().length).isEqualTo(1);
assertThat(transactionResult.getStructLogs().get(0).stack()[0])
.isEqualTo(stackBytes[0].toUnprefixedHexString());
.isEqualTo(
StructLog.toCompactHex(stackBytes[0], true));
assertThat(transactionResult.getStructLogs().get(0).memory().length).isEqualTo(1);
assertThat(transactionResult.getStructLogs().get(0).memory()[0])
.isEqualTo(memoryBytes[0].toUnprefixedHexString());
.isEqualTo(StructLog.toCompactHex(memoryBytes[0], true));
}

@Test
Expand Down
Loading

0 comments on commit 3a7695d

Please sign in to comment.