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 @@ -243,7 +243,6 @@ fn not_declared_scenario() -> GetCompiledClassTestScenario {
243243 }
244244}
245245
246- #[ cfg( not( feature = "cairo_native" ) ) ]
247246#[ rstest]
248247#[ case:: cairo_0_declared_and_cached( cairo_0_declared_scenario( ) , cairo_0_cached_scenario( ) ) ]
249248#[ case:: cairo_1_declared_and_cached( cairo_1_declared_scenario( ) , cairo_1_cached_scenario( ) ) ]
@@ -256,10 +255,11 @@ fn not_declared_scenario() -> GetCompiledClassTestScenario {
256255fn test_get_compiled_class_caching_scenarios (
257256 #[ case] first_scenario : GetCompiledClassTestScenario ,
258257 #[ case] second_scenario : GetCompiledClassTestScenario ,
258+ #[ values( true , false ) ] wait_on_native_compilation : bool ,
259259) {
260260 let contract_class_manager = ContractClassManager :: start ( ContractClassManagerConfig {
261261 cairo_native_run_config : CairoNativeRunConfig {
262- wait_on_native_compilation : false ,
262+ wait_on_native_compilation,
263263 ..Default :: default ( )
264264 } ,
265265 ..Default :: default ( )
You can’t perform that action at this time.
0 commit comments