Index: tests/lib/math/math_parse_double_test.dart |
diff --git a/tests/lib/math/math_parse_double_test.dart b/tests/lib/math/math_parse_double_test.dart |
index fb6b3fac663dbf6b68952bf43edf3e7de66e6d63..af77f6b6c232105e093662b26a1c3093eb6eb54a 100644 |
--- a/tests/lib/math/math_parse_double_test.dart |
+++ b/tests/lib/math/math_parse_double_test.dart |
@@ -6,6 +6,7 @@ |
// class. This can easily be simplified once we get rid of the Math |
// class entirely. |
library math_parse_double_test; |
+import "package:expect/expect.dart"; |
void parseDoubleThrowsFormatException(str) { |
Expect.throws(() => double.parse(str), (e) => e is FormatException); |