Index: tests/standalone/io/sleep_test.dart |
diff --git a/tests/standalone/io/sleep_test.dart b/tests/standalone/io/sleep_test.dart |
index 91c662571a0c34fa6f34e7665c87da9521945ac3..f2402961cff8c87cefe362396a89820921eb58e7 100644 |
--- a/tests/standalone/io/sleep_test.dart |
+++ b/tests/standalone/io/sleep_test.dart |
@@ -21,8 +21,8 @@ main() { |
bool sawError = false; |
try { |
sleep(new Duration(milliseconds: -1)); |
- expect(false, isTrue); // should not reach here. |
- } on ArgumentError catch(e) { |
+ expect(false, isTrue); // should not reach here. |
+ } on ArgumentError catch (e) { |
sawError = true; |
} |
expect(sawError, isTrue); |