Unverified Commit 6016882a authored by Danny Tuppeny's avatar Danny Tuppeny Committed by GitHub

Update devicelab test with new message prefix (#19560)

While working on attach, I changed the message output while waiting for an app to connect but didn't catch this.
parent ed9afbbc
......@@ -31,7 +31,7 @@ Future<void> testReload(Process process, { Future<void> Function() onListening }
.listen((String line) {
print('attach:stdout: $line');
stdout.add(line);
if (line.contains('Listening') && onListening != null) {
if (line.contains('Waiting') && onListening != null) {
listening.complete(onListening());
}
if (line.contains('To quit, press "q".'))
......
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