Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(914)

Unified Diff: tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart
diff --git a/tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart b/tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart
index aa835a8562b7c1021ee14ee7b06080daf2436829..0222434f09f7b70764be23683f89f03840ec9487 100644
--- a/tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart
+++ b/tests/compiler/dart2js_extra/lookup_map/live_entry_test.dart
@@ -4,10 +4,10 @@
import 'package:lookup_map/lookup_map.dart';
import 'package:expect/expect.dart';
-class A{}
-const map = const LookupMap(const [
- A, "the-text-for-A",
-]);
+
+class A {}
+
+const map = const LookupMap(const [A, "the-text-for-A",]);
main() {
Expect.equals(map[A], 'the-text-for-A');
}

Powered by Google App Engine
This is Rietveld 408576698