Unverified Commit 3a6228be authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Fix commands_test (#20017)

I changed the wording that it was depending on in my last commit. Oops.
parent acf4b6c1
......@@ -85,7 +85,7 @@ void main() {
final Future<String> restartStartingText =
stdout.stream.firstWhere((String line) => line.endsWith('hot restart...'));
final Future<String> restartEndingText =
stdout.stream.firstWhere((String line) => line.contains('Restart performed in '));
stdout.stream.firstWhere((String line) => line.contains('Hot restart performed in '));
print('test: pressing "R" to perform a full reload...');
run.stdin.write('R');
await restartStartingText;
......
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