Index: tests/html/js_typed_interop_type3_test.dart |
diff --git a/tests/html/js_typed_interop_type3_test.dart b/tests/html/js_typed_interop_type3_test.dart |
index f32d9f3e60349ca781d5fbf80243d7732dbb0990..da4479444af85a3006cbdef37413f1d687c6da00 100644 |
--- a/tests/html/js_typed_interop_type3_test.dart |
+++ b/tests/html/js_typed_interop_type3_test.dart |
@@ -79,10 +79,10 @@ main() { |
var a = new A(1); |
var d = new D(foo: 4); |
- Expect.equals(testA(a), 1); /// 01: ok |
- Expect.equals(testA(a), 1); /// 02: ok |
+ Expect.equals(testA(a), 1); //# 01: ok |
+ Expect.equals(testA(a), 1); //# 02: ok |
Expect.equals(testA(d), 4); |
- Expect.equals(testD(d), 4); /// 02: continued |
+ Expect.equals(testD(d), 4); //# 02: continued |
} |