Unverified Commit 4ef1fe44 authored by Michael Goderbauer's avatar Michael Goderbauer Committed by GitHub

Work-around for channels flake (#121261)

parent 17372335
......@@ -24,7 +24,10 @@ void main() {
while (getStatus(tester) == 'ok') {
step++;
print('>> Tapping for step $step...');
await tester.tap(stepButton);
// TODO(goderbauer): Setting the pointer ID to something large to avoid
// that the test events clash with ghost events from the device to
// further investigate https://github.com/flutter/flutter/issues/116663.
await tester.tap(stepButton, pointer: 500 + step);
await tester.pump();
expect(statusField, findsNothing);
......
......@@ -146,7 +146,7 @@ abstract class BindingBase {
return true;
}());
assert(_debugInitializedType == null);
assert(_debugInitializedType == null, 'Binding is already initialized to $_debugInitializedType');
initInstances();
assert(_debugInitializedType != null);
......
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