Index: tests/corelib/num_clamp_test.dart |
diff --git a/tests/corelib/num_clamp_test.dart b/tests/corelib/num_clamp_test.dart |
index 662cab8a173348bb3fb051ad92579ab9049c6588..f848677f86d6c6305a865262e43d10fa82b608bf 100644 |
--- a/tests/corelib/num_clamp_test.dart |
+++ b/tests/corelib/num_clamp_test.dart |
@@ -3,6 +3,8 @@ |
// BSD-style license that can be found in the LICENSE file. |
// Test num.clamp. |
+import "package:expect/expect.dart"; |
+ |
testIntClamp() { |
Expect.equals(2, 2.clamp(1, 3)); |
Expect.equals(1, 0.clamp(1, 3)); |