From 4dba7d839bdb64bedbcbc5bf511fe91360a014a4 Mon Sep 17 00:00:00 2001 From: Alexander Dahlberg Date: Thu, 9 Sep 2021 00:22:06 +0200 Subject: [PATCH] Fixed leak and removed no-shuffle tag in widgets/clip_test.dart (#88824) --- packages/flutter/test/widgets/clip_test.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/packages/flutter/test/widgets/clip_test.dart b/packages/flutter/test/widgets/clip_test.dart index cf1a4022410..2eba038f185 100644 --- a/packages/flutter/test/widgets/clip_test.dart +++ b/packages/flutter/test/widgets/clip_test.dart @@ -2,15 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -// no-shuffle: -// //TODO(gspencergoog): Remove this tag once this test's state leaks/test -// dependencies have been fixed. -// https://github.com/flutter/flutter/issues/85160 -// Fails with "flutter test --test-randomize-ordering-seed=456" // reduced-test-set: // This file is run as part of a reduced test set in CI on Mac and Windows // machines. -@Tags(['reduced-test-set', 'no-shuffle']) +@Tags(['reduced-test-set']) import 'package:flutter/material.dart'; import 'package:flutter/rendering.dart'; @@ -320,6 +315,7 @@ void main() { await tester.tapAt(const Offset(100.0, 100.0)); expect(log, equals(['a', 'tap', 'a', 'b', 'c', 'tap'])); + log.clear(); }); testWidgets('debugPaintSizeEnabled', (WidgetTester tester) async {