Index: tests/language/emit_const_fields_test.dart |
diff --git a/tests/language/emit_const_fields_test.dart b/tests/language/emit_const_fields_test.dart |
index 61e09d628db475127ab951a1bda86388c741fa8f..1a3d7a54bd0149bd296d66510f712bed046bf33c 100644 |
--- a/tests/language/emit_const_fields_test.dart |
+++ b/tests/language/emit_const_fields_test.dart |
@@ -10,7 +10,7 @@ class Guide { |
static const TITLE = "Life, the Universe and Everything"; |
static const EARTH = const { |
"Sector": "ZZ9 Plural Z Alpha", |
- "Status": const [ "Scheduled for demolition", "1978-03-08" ], |
+ "Status": const ["Scheduled for demolition", "1978-03-08"], |
"Description": "Mostly harmless" |
}; |
} |
@@ -19,4 +19,3 @@ main() { |
Expect.isTrue(42 == Guide.LTUAE); |
Expect.isTrue("1978-03-08" == Guide.EARTH["Status"][1]); |
} |
- |