diff --git a/integration_test/base/test_base.dart b/integration_test/base/test_base.dart index fd74af23c..3797830d6 100644 --- a/integration_test/base/test_base.dart +++ b/integration_test/base/test_base.dart @@ -16,7 +16,7 @@ class TestBase { required String description, required BaseScenario Function(PatrolIntegrationTester $) scenarioBuilder, }) { - patrolSetUp(_setupAll); + patrolSetUp(_setup); patrolTearDown(_tearDown); @@ -47,7 +47,7 @@ class TestBase { }; } - Future _setupAll() async { + Future _setup() async { PlatformInfo.isIntegrationTesting = true; }