Fix typo in test name (#86083)

This commit is contained in:
Ahmed Ashour 2021-07-09 20:16:03 +02:00 committed by GitHub
parent f149a0441e
commit ef9da62325
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,7 +38,7 @@ void main() {
expect(_flutter.hasExited, equals(false)); expect(_flutter.hasExited, equals(false));
}); });
testWithoutContext('fluter run does not terminate when a debugger is attached and pause-on-exceptions', () async { testWithoutContext('flutter run does not terminate when a debugger is attached and pause-on-exceptions', () async {
await _flutter.run(withDebugger: true, pauseOnExceptions: true); await _flutter.run(withDebugger: true, pauseOnExceptions: true);
await Future<void>.delayed(requiredLifespan); await Future<void>.delayed(requiredLifespan);
expect(_flutter.hasExited, equals(false)); expect(_flutter.hasExited, equals(false));