From 740fb2a8bb6d43a475ce76f7fe3e5fc10bbe24ff Mon Sep 17 00:00:00 2001 From: Danny Tuppeny Date: Sat, 2 Mar 2019 13:19:49 +0000 Subject: [PATCH] Fix the test annotation used for test groups (#28638) --- packages/flutter_test/lib/src/test_compat.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/flutter_test/lib/src/test_compat.dart b/packages/flutter_test/lib/src/test_compat.dart index e2e83fcc695..f21dd4e20c4 100644 --- a/packages/flutter_test/lib/src/test_compat.dart +++ b/packages/flutter_test/lib/src/test_compat.dart @@ -231,7 +231,7 @@ void test( /// suite*—tests in other suites will run as normal. We recommend that users /// avoid this flag if possible, and instead use the test runner flag `-n` to /// filter tests by name. -@isTest +@isTestGroup void group(Object description, Function body) { _declarer.group(description.toString(), body); }