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

Unified Diff: packages/quiver/test/iterables/enumerate_test.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 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
« no previous file with comments | « packages/quiver/test/iterables/concat_test.dart ('k') | packages/quiver/test/iterables/merge_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/quiver/test/iterables/enumerate_test.dart
diff --git a/packages/quiver/test/iterables/enumerate_test.dart b/packages/quiver/test/iterables/enumerate_test.dart
index cc8704766653cb19345ece973840e97ce4743de1..eda5cddca48bed176cab4ada8d2d73e4ea93a6a7 100644
--- a/packages/quiver/test/iterables/enumerate_test.dart
+++ b/packages/quiver/test/iterables/enumerate_test.dart
@@ -32,7 +32,7 @@ main() {
test("should add indices to its argument", () {
var e = enumerate(['a', 'b', 'c']);
expect(e.map((v) => v.index), [0, 1, 2]);
- expect(e.map((v) => v.index), [ 0, 1, 2 ],
+ expect(e.map((v) => v.index), [0, 1, 2],
reason: 'should enumerate to the same values a second time');
});
« no previous file with comments | « packages/quiver/test/iterables/concat_test.dart ('k') | packages/quiver/test/iterables/merge_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698