Skip to content

Commit 7515764

Browse files
committed
feat: only one eoa address + timeout fast replay to 30min
1 parent cee5b29 commit 7515764

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tracer/arithmetization/src/test/java/net/consensys/linea/zktracer/instructionprocessing/callTests/CallDelegation.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ void EOADelegatedToItself(TestInfo testInfo) {
172172

173173
ToyAccount eoa =
174174
ToyAccount.builder()
175-
.address(Address.fromHexString("ca11ee1")) // identity caller
175+
.address(eoaAddress) // identity caller
176176
.nonce(99)
177177
.code(Bytes.concatenate(Bytes.fromHexString(delegationCodeToEoa)))
178178
.build();

tracer/gradle/tests.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ tasks.register("fastReplayTests", Test) {
180180
excludeTags("nightly | weekly")
181181
}
182182
finalizedBy("jacocoFastReplayTestsReport")
183+
systemProperty("junit.jupiter.execution.timeout.default", "30 m")
183184
}
184185

185186
tasks.register("nightlyReplayTests", Test) {

0 commit comments

Comments
 (0)