Unverified Commit 2dbf594f authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Resolve TODOs in channels integration test (#130745)

They were helpful in diagnosing the flake in https://github.com/flutter/flutter/issues/116663, but now that that's resolved they have outlived their usefulness. Let's remove 'em!
parent ede545cd
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'package:channels/main.dart'; import 'package:channels/main.dart';
import 'package:flutter/gestures.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -14,9 +13,6 @@ String getStatus(WidgetTester tester) => tester.widget<Text>(statusField).data!; ...@@ -14,9 +13,6 @@ String getStatus(WidgetTester tester) => tester.widget<Text>(statusField).data!;
void main() { void main() {
testWidgets('step through', (WidgetTester tester) async { testWidgets('step through', (WidgetTester tester) async {
// TODO(goderbauer): Remove this once https://github.com/flutter/flutter/issues/116663 is diagnosed.
debugPrintHitTestResults = true;
await tester.pumpWidget(const TestApp()); await tester.pumpWidget(const TestApp());
await tester.pumpAndSettle(); await tester.pumpAndSettle();
...@@ -37,9 +33,6 @@ void main() { ...@@ -37,9 +33,6 @@ void main() {
} }
} }
// TODO(goderbauer): Remove this once https://github.com/flutter/flutter/issues/116663 is diagnosed.
debugPrintHitTestResults = false;
final String status = getStatus(tester); final String status = getStatus(tester);
if (status != 'complete') { if (status != 'complete') {
fail('Failed at step $step with status $status'); fail('Failed at step $step with status $status');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment