@@ -101,6 +101,7 @@ fn start_and_stop_cheat_transaction_hash_single_attribute() {
101101}
102102
103103#[ test]
104+ #[ ignore] // TODO(#2765)
104105#[ allow( clippy:: too_many_lines) ]
105106fn start_cheat_execution_info_all_attributes_mocked ( ) {
106107 let test = test_case ! (
@@ -283,7 +284,7 @@ fn start_cheat_transaction_hash_cancel_mock_by_setting_attribute_to_none() {
283284 use serde::Serde;
284285 use starknet::ContractAddress;
285286 use array::SpanTrait;
286- use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, stop_cheat_transaction_hash, TxInfoMock, Operation, CheatArguments, CheatSpan };
287+ use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, stop_cheat_transaction_hash, CheatSpan };
287288 use starknet::info::v2::ResourceBounds;
288289
289290 #[starknet::interface]
@@ -361,7 +362,7 @@ fn start_cheat_transaction_hash_multiple() {
361362 use starknet::ContractAddress;
362363 use starknet::ContractAddressIntoFelt252;
363364 use array::SpanTrait;
364- use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, TxInfoMock, Operation, CheatArguments, CheatSpan};
365+ use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, CheatSpan};
365366
366367 #[starknet::interface]
367368 trait ICheatTxInfoChecker<TContractState> {
@@ -402,6 +403,7 @@ fn start_cheat_transaction_hash_multiple() {
402403}
403404
404405#[ test]
406+ #[ ignore] // TODO(#2765)
405407#[ allow( clippy:: too_many_lines) ]
406408fn start_cheat_execution_info_all ( ) {
407409 let test = test_case ! (
@@ -456,6 +458,7 @@ fn start_cheat_execution_info_all() {
456458 let dispatcher = ICheatTxInfoCheckerDispatcher { contract_address };
457459
458460 let mut execution_info_mock: ExecutionInfoMock = Default::default();
461+
459462 execution_info_mock.tx_info.nonce = Operation::StartGlobal(411);
460463 execution_info_mock.tx_info.account_contract_address = Operation::StartGlobal(422.try_into().unwrap());
461464 execution_info_mock.tx_info.version = Operation::StartGlobal(433);
@@ -546,7 +549,7 @@ fn start_cheat_transaction_hash_complex() {
546549 use starknet::ContractAddress;
547550 use starknet::ContractAddressIntoFelt252;
548551 use array::SpanTrait;
549- use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, start_cheat_transaction_hash_global, TxInfoMock, Operation, CheatArguments, CheatSpan };
552+ use snforge_std::{ declare, ContractClassTrait, DeclareResultTrait, start_cheat_transaction_hash, start_cheat_transaction_hash_global, CheatSpan };
550553
551554 #[starknet::interface]
552555 trait ICheatTxInfoChecker<TContractState> {
@@ -609,7 +612,7 @@ fn cheat_transaction_hash_with_span() {
609612 use serde::Serde;
610613 use starknet::ContractAddress;
611614 use array::SpanTrait;
612- use snforge_std::{ test_address, declare, ContractClassTrait, DeclareResultTrait, cheat_transaction_hash, stop_cheat_transaction_hash, CheatSpan, Operation, CheatArguments };
615+ use snforge_std::{ test_address, declare, ContractClassTrait, DeclareResultTrait, cheat_transaction_hash, stop_cheat_transaction_hash, CheatSpan};
613616 use starknet::info::v2::ResourceBounds;
614617
615618 #[starknet::interface]
0 commit comments