Index: tests/isolate/port_test.dart |
diff --git a/tests/isolate/port_test.dart b/tests/isolate/port_test.dart |
index 56563eedb97fac7e15e465b6efb125d5b13fb646..02ea365f90ecc9cc2d47f936bfbd7c7a3ed30400 100644 |
--- a/tests/isolate/port_test.dart |
+++ b/tests/isolate/port_test.dart |
@@ -19,8 +19,8 @@ main() { |
void testHashCode() { |
ReceivePort rp0 = new ReceivePort(); |
ReceivePort rp1 = new ReceivePort(); |
- Expect.equals(rp0.toSendPort().hashCode(), rp0.toSendPort().hashCode()); |
- Expect.equals(rp1.toSendPort().hashCode(), rp1.toSendPort().hashCode()); |
+ Expect.equals(rp0.toSendPort().hashCode, rp0.toSendPort().hashCode); |
+ Expect.equals(rp1.toSendPort().hashCode, rp1.toSendPort().hashCode); |
rp0.close(); |
rp1.close(); |
} |