From 429379c308eac722b3a8a02224a9db5e90c014c6 Mon Sep 17 00:00:00 2001 From: dab246 Date: Fri, 23 Jan 2026 12:20:36 +0700 Subject: [PATCH] TF-4236 Renaming `_setupAll` to `_setUp` for clarity. --- integration_test/base/test_base.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }