File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/blockifier/src/state Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,6 @@ fn not_declared_scenario() -> GetCompiledClassTestScenario {
223223 }
224224}
225225
226- #[ cfg( not( feature = "cairo_native" ) ) ]
227226#[ rstest]
228227#[ case:: cairo_0_declared_and_cached( cairo_0_declared_scenario( ) , cairo_0_cached_scenario( ) ) ]
229228#[ case:: cairo_1_declared_and_cached( cairo_1_declared_scenario( ) , cairo_1_cached_scenario( ) ) ]
@@ -236,10 +235,11 @@ fn not_declared_scenario() -> GetCompiledClassTestScenario {
236235fn test_get_compiled_class_caching_scenarios (
237236 #[ case] first_scenario : GetCompiledClassTestScenario ,
238237 #[ case] second_scenario : GetCompiledClassTestScenario ,
238+ #[ values( true , false ) ] wait_on_native_compilation : bool ,
239239) {
240240 let contract_class_manager = ContractClassManager :: start ( ContractClassManagerConfig {
241241 cairo_native_run_config : CairoNativeRunConfig {
242- wait_on_native_compilation : false ,
242+ wait_on_native_compilation,
243243 ..Default :: default ( )
244244 } ,
245245 ..Default :: default ( )
You can’t perform that action at this time.
0 commit comments