@@ -148,7 +148,7 @@ TEST(AvmSimulationEccTest, AddWithMemory)
148148 MemoryStore memory;
149149
150150 EXPECT_CALL (execution_id_manager, get_execution_id ()).WillOnce (Return (0 ));
151- EXPECT_CALL (gt, gt (0x1000 + 2 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
151+ EXPECT_CALL (gt, gt (0x1000 + 1 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
152152
153153 Ecc ecc (
154154 execution_id_manager, gt, to_radix, ecc_event_emitter, scalar_mul_event_emitter, ecc_add_memory_event_emitter);
@@ -184,7 +184,7 @@ TEST(AvmSimulationEccTest, AddNotOnCurve)
184184 MemoryStore memory;
185185
186186 EXPECT_CALL (execution_id_manager, get_execution_id ()).WillOnce (Return (0 ));
187- EXPECT_CALL (gt, gt (0x1000 + 2 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
187+ EXPECT_CALL (gt, gt (0x1000 + 1 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
188188
189189 Ecc ecc (
190190 execution_id_manager, gt, to_radix, ecc_event_emitter, scalar_mul_event_emitter, ecc_add_memory_event_emitter);
@@ -215,7 +215,7 @@ TEST(AvmSimulationEccTest, InfinityOnCurve)
215215 MemoryStore memory;
216216
217217 EXPECT_CALL (execution_id_manager, get_execution_id ()).WillOnce (Return (0 ));
218- EXPECT_CALL (gt, gt (0x1000 + 2 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
218+ EXPECT_CALL (gt, gt (0x1000 + 1 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
219219
220220 Ecc ecc (
221221 execution_id_manager, gt, to_radix, ecc_event_emitter, scalar_mul_event_emitter, ecc_add_memory_event_emitter);
@@ -248,7 +248,7 @@ TEST(AvmSimulationEccTest, AddsUpToInfinity)
248248 MemoryStore memory;
249249
250250 EXPECT_CALL (execution_id_manager, get_execution_id ()).WillOnce (Return (0 ));
251- EXPECT_CALL (gt, gt (0x1000 + 2 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
251+ EXPECT_CALL (gt, gt (0x1000 + 1 , AVM_HIGHEST_MEM_ADDRESS)).WillOnce (Return (false ));
252252
253253 Ecc ecc (
254254 execution_id_manager, gt, to_radix, ecc_event_emitter, scalar_mul_event_emitter, ecc_add_memory_event_emitter);
0 commit comments