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

Unified Diff: tests/corelib_strong/splay_tree_from_iterable_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments Created 3 years, 9 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/corelib_strong/splay_tree_from_iterable_test.dart
diff --git a/tests/corelib_strong/splay_tree_from_iterable_test.dart b/tests/corelib_strong/splay_tree_from_iterable_test.dart
index 35bdf9204ed6720dfc7a4437de08be797bae4cfb..2212c10c0fed9f071d47c98d91245ea29ba5ff77 100644
--- a/tests/corelib_strong/splay_tree_from_iterable_test.dart
+++ b/tests/corelib_strong/splay_tree_from_iterable_test.dart
@@ -147,7 +147,7 @@ void typedTest() {
Expect.throws(() {
new SplayTreeMap<String,bool>.fromIterable(<int>[1, 2, 3],
- key: id as dynamic, // wrong type.
+ key: id as dynamic, // wrong type.
value: value
);
});
@@ -155,7 +155,7 @@ void typedTest() {
Expect.throws(() {
new SplayTreeMap<String,bool>.fromIterable(<int>[1, 2, 3],
key: key,
- value: id as dynamic // wrong type.
+ value: id as dynamic // wrong type.
);
});

Powered by Google App Engine
This is Rietveld 408576698