From a4b3d8bc5b229f18e732213a4d81625719a94674 Mon Sep 17 00:00:00 2001 From: sgrekhov Date: Thu, 5 Jan 2023 10:02:44 +0400 Subject: [PATCH] Fixes #1646. Fix typo in constant_A03_t05.dart test --- LanguageFeatures/Patterns/constant_A03_t05.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LanguageFeatures/Patterns/constant_A03_t05.dart b/LanguageFeatures/Patterns/constant_A03_t05.dart index 919fc75ccf..92ba558dd0 100644 --- a/LanguageFeatures/Patterns/constant_A03_t05.dart +++ b/LanguageFeatures/Patterns/constant_A03_t05.dart @@ -108,7 +108,7 @@ String testSet(Set value) { } main() { - Expect.equals("[1, -2]", testList(const [1, 2])); + Expect.equals("[1, -2]", testList(const [1, -2])); Expect.equals("[1, -2]", testList(const [1, -2])); Expect.equals("default", testList([1, -2])); Expect.equals("default", testList(const [1, -2]));