| 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');
|
| });
|
|
|
|
|