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

Unified Diff: packages/quiver_iterables/test/enumerate_test.dart

Issue 2119523002: Added full js & js_util packages (Closed) Base URL: git@github.com:dart-lang/observatory_pub_packages.git@master
Patch Set: Created 4 years, 6 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: packages/quiver_iterables/test/enumerate_test.dart
diff --git a/packages/quiver/test/iterables/enumerate_test.dart b/packages/quiver_iterables/test/enumerate_test.dart
similarity index 96%
copy from packages/quiver/test/iterables/enumerate_test.dart
copy to packages/quiver_iterables/test/enumerate_test.dart
index cc8704766653cb19345ece973840e97ce4743de1..96b79bacd518a933417abc6272c48b336008429e 100644
--- a/packages/quiver/test/iterables/enumerate_test.dart
+++ b/packages/quiver_iterables/test/enumerate_test.dart
@@ -15,7 +15,7 @@
library quiver.iterables.enumerate_test;
import 'package:test/test.dart';
-import 'package:quiver/iterables.dart';
+import 'package:quiver_iterables/iterables.dart';
main() {
group('enumerate', () {
@@ -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_iterables/test/cycle_test.dart ('k') | packages/quiver_iterables/test/generating_iterable_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698