Index: tests/corelib/list_first_test.dart |
diff --git a/tests/corelib/list_first_test.dart b/tests/corelib/list_first_test.dart |
index c0795a45288a172e875fc7b9e648f73b560dffcd..74be9812878727cc9af31296e7e8dbc2d3adfced 100644 |
--- a/tests/corelib/list_first_test.dart |
+++ b/tests/corelib/list_first_test.dart |
@@ -2,6 +2,8 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
+import "package:expect/expect.dart"; |
+ |
void test(List list) { |
if (list.isEmpty) { |
Expect.throws(() => list.first, (e) => e is StateError); |