Skip to content

Commit

Permalink
Fixed mistake in iterator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kimlaine committed Jul 15, 2020
1 parent 6c337bb commit f6c2d32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/tests/seal/util/iterator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ namespace sealtest
ASSERT_EQ(4, *s[2]);

// Increment/Decrement
StrideIter u = s++;
StrideIter<uint64_t *> u = s++;
ASSERT_EQ(0, **u);
ASSERT_EQ(2, **s);
u = s--;
Expand Down

0 comments on commit f6c2d32

Please sign in to comment.