Skip to content

Commit

Permalink
test(blockifier): l1 bounds -> all bounds in stack trace test (#1310)
Browse files Browse the repository at this point in the history
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/starkware-libs/sequencer/1310)
<!-- Reviewable:end -->
  • Loading branch information
dorimedini-starkware authored Oct 15, 2024
1 parent 458b545 commit 65de883
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions crates/blockifier/src/execution/stack_trace_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ use crate::transaction::test_utils::{
account_invoke_tx,
block_context,
create_account_tx_for_validate_test_nonce_0,
default_l1_resource_bounds,
default_all_resource_bounds,
run_invoke_tx,
FaultyAccountTxCreatorArgs,
INVALID,
Expand Down Expand Up @@ -618,7 +618,7 @@ fn test_account_ctor_frame_stack_trace(
scenario: INVALID,
class_hash,
max_fee: BALANCE,
resource_bounds: default_l1_resource_bounds(),
resource_bounds: default_all_resource_bounds(),
validate_constructor: true,
..Default::default()
});
Expand Down Expand Up @@ -666,7 +666,7 @@ An ASSERT_EQ instruction failed: 1 != 0.
/// point selector).
fn test_contract_ctor_frame_stack_trace(
block_context: BlockContext,
default_l1_resource_bounds: ValidResourceBounds,
default_all_resource_bounds: ValidResourceBounds,
#[values(CairoVersion::Cairo0, CairoVersion::Cairo1)] cairo_version: CairoVersion,
) {
let chain_info = &block_context.chain_info;
Expand Down Expand Up @@ -703,7 +703,7 @@ fn test_contract_ctor_frame_stack_trace(
validate_constructor,
]
),
resource_bounds: default_l1_resource_bounds,
resource_bounds: default_all_resource_bounds,
nonce: Nonce(felt!(0_u8)),
});

Expand Down

0 comments on commit 65de883

Please sign in to comment.