Skip to content

Commit

Permalink
Fixes dart-lang#1646. Fix typo in constant_A03_t05.dart test
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Jan 5, 2023
1 parent 74cb5e7 commit a4b3d8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LanguageFeatures/Patterns/constant_A03_t05.dart
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ String testSet(Set value) {
}

main() {
Expect.equals("<dynamic>[1, -2]", testList(const [1, 2]));
Expect.equals("<dynamic>[1, -2]", testList(const [1, -2]));
Expect.equals("<int>[1, -2]", testList(const <int>[1, -2]));
Expect.equals("default", testList([1, -2]));
Expect.equals("default", testList(const <num>[1, -2]));
Expand Down

0 comments on commit a4b3d8b

Please sign in to comment.