Skip to content

Commit a7b0b90

Browse files
committed
tests: fix merge mistake
1 parent 743f2b5 commit a7b0b90

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test_sequences_and_iterators.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ TEST_SUBMODULE(sequences_and_iterators, m) {
338338
}, py::keep_alive<0, 1>())
339339
.def("nonzero_values", [](const IntPairs& s) {
340340
return py::make_value_iterator(NonZeroIterator<std::pair<int, int>>(s.begin()), NonZeroSentinel());
341+
}, py::keep_alive<0, 1>())
341342
.def("simple_iterator", [](IntPairs& self) {
342343
return py::make_iterator(self);
343344
}, py::keep_alive<0, 1>())

0 commit comments

Comments
 (0)