From 02086f94db6b6db262ded77b53d5c480f9f4fc8a Mon Sep 17 00:00:00 2001 From: grandizzy Date: Wed, 11 Sep 2024 13:13:38 +0300 Subject: [PATCH] Fix tests with isolate-by-default --- crates/forge/tests/it/cheats.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/forge/tests/it/cheats.rs b/crates/forge/tests/it/cheats.rs index 4bbeb9fe3d89..a60602cbc1cc 100644 --- a/crates/forge/tests/it/cheats.rs +++ b/crates/forge/tests/it/cheats.rs @@ -24,7 +24,7 @@ async fn test_cheats_local(test_data: &ForgeTestData) { } if cfg!(feature = "isolate-by-default") { - filter = filter.exclude_contracts("LastCallGasDefaultTest"); + filter = filter.exclude_contracts("(LastCallGasDefaultTest|MockFunctionTest|WithSeed)"); } let mut config = test_data.config.clone();