Skip to content

Commit e286d33

Browse files
committed
Fixes dart-lang#2507. Fix roll failures (dart-lang#2508)
1 parent 1c67529 commit e286d33

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Language/Expressions/Constants/as_type_A01_t01.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ main() {
7272
Expect.identical(const C(), c19);
7373
Expect.identical(const C(), c20);
7474
Expect.identical((), c21);
75-
Expect.identical((i: 1), c22);
75+
Expect.equals((i: 1), c22);
7676
}

Language/Expressions/Constants/as_type_A01_t03.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ main() {
4545

4646
Expect.identical(1, c1);
4747
Expect.identical(2, c2);
48-
Expect.identical((3,), c3);
49-
Expect.identical((4,), c4);
50-
Expect.identical((i: 5), c5);
51-
Expect.identical((i: 6), c6);
48+
Expect.equals((3,), c3);
49+
Expect.equals((4,), c4);
50+
Expect.equals((i: 5), c5);
51+
Expect.equals((i: 6), c6);
5252
}

0 commit comments

Comments
 (0)