Index: tests/standalone/regress_26031_test.dart |
diff --git a/tests/standalone/regress_26031_test.dart b/tests/standalone/regress_26031_test.dart |
index 44765c2ba7bfb91866f4ea0c3da723977749ad47..261adcb438cb4ba0b008d730c574ce8bd0447066 100644 |
--- a/tests/standalone/regress_26031_test.dart |
+++ b/tests/standalone/regress_26031_test.dart |
@@ -13,8 +13,7 @@ void checkResolvedExecutable(String re) { |
main() { |
var exitPort = new ReceivePort(); |
- Isolate.spawn(checkResolvedExecutable, |
- Platform.resolvedExecutable, |
- onExit: exitPort.sendPort); |
+ Isolate.spawn(checkResolvedExecutable, Platform.resolvedExecutable, |
+ onExit: exitPort.sendPort); |
exitPort.listen((_) => exitPort.close()); |
} |