Skip to content

Commit

Permalink
✅ Fixed warning in test
Browse files Browse the repository at this point in the history
* Fixed warning in `PickleIterator` constructor test
  • Loading branch information
kasefuchs committed Jun 23, 2023
1 parent 1a010e1 commit bdefcc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/consturctors_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ void main() {
Pickle pickle = Pickle.empty();
PickleIterator iterator = pickle.createIterator();

expect(iterator.payload, pickle.header);
expect(iterator.pickle.header, pickle.header);
});
});
}

0 comments on commit bdefcc7

Please sign in to comment.