File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
crates/starknet_os_flow_tests/src Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -114,6 +114,10 @@ pub(crate) struct OsTestOutput<S: FlowTestState> {
114
114
}
115
115
116
116
impl < S : FlowTestState > OsTestOutput < S > {
117
+ pub ( crate ) fn perform_default_validations ( & self ) {
118
+ self . perform_validations ( true , None ) ;
119
+ }
120
+
117
121
pub ( crate ) fn perform_validations (
118
122
& self ,
119
123
perform_global_validations : bool ,
Original file line number Diff line number Diff line change @@ -230,6 +230,5 @@ async fn trivial_diff_scenario(
230
230
!test_output. decompressed_state_diff. storage_updates. contains_key( & test_contract_address)
231
231
) ;
232
232
233
- let perform_global_validations = true ;
234
- test_output. perform_validations ( perform_global_validations, None ) ;
233
+ test_output. perform_default_validations ( ) ;
235
234
}
You can’t perform that action at this time.
0 commit comments