Unverified Commit cbb168e7 authored by Danny Tuppeny's avatar Danny Tuppeny Committed by GitHub

Fix (probably) bad assert when running `flutter test` with asserts and `--start-paused` (#25512)

Fixes #25201.
parent 32d65fef
......@@ -84,7 +84,7 @@ void installHook({
InternetAddressType serverType = InternetAddressType.IPv4,
Uri projectRootDirectory,
}) {
assert(!enableObservatory || (!startPaused && observatoryPort == null));
assert(enableObservatory || (!startPaused && observatoryPort == null));
hack.registerPlatformPlugin(
<Runtime>[Runtime.vm],
() => _FlutterPlatform(
......
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