From fb33e4a47708bbda30830e1f191b04f8d4446247 Mon Sep 17 00:00:00 2001 From: Bartek Pacia Date: Tue, 12 Sep 2023 12:20:43 +0200 Subject: [PATCH] improve code comment --- packages/patrol_cli/lib/src/test_bundler.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/patrol_cli/lib/src/test_bundler.dart b/packages/patrol_cli/lib/src/test_bundler.dart index 1e85599ced..d52c24033f 100644 --- a/packages/patrol_cli/lib/src/test_bundler.dart +++ b/packages/patrol_cli/lib/src/test_bundler.dart @@ -79,8 +79,8 @@ Future main() async { // This test must be the first to run. If not, the native side likely won't // receive any tests, and everything will fall apart. test('patrol_test_explorer', () { - // Counterintuitively, this callback runs *after* the calls to group() - // below. + // Maybe somewhat counterintuitively, this callback runs *after* the calls + // to group() below. final topLevelGroup = Invoker.current!.liveTest.groups.first; final dartTestGroup = createDartTestGroup(topLevelGroup); testExplorationCompleter.complete(dartTestGroup);