summaryrefslogtreecommitdiffstats
path: root/memfilepersistence/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'memfilepersistence/src/tests')
-rw-r--r--memfilepersistence/src/tests/spi/iteratorhandlertest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/memfilepersistence/src/tests/spi/iteratorhandlertest.cpp b/memfilepersistence/src/tests/spi/iteratorhandlertest.cpp
index 6fb2a8393be..b34adc7fa8f 100644
--- a/memfilepersistence/src/tests/spi/iteratorhandlertest.cpp
+++ b/memfilepersistence/src/tests/spi/iteratorhandlertest.cpp
@@ -149,7 +149,7 @@ IteratorHandlerTest::doIterate(spi::IteratorId id,
CPPUNIT_ASSERT_EQUAL(spi::Result::NONE, result.getErrorCode());
CPPUNIT_ASSERT(result.getEntries().size() > 0 || allowEmptyResult);
- chunks.push_back(Chunk{std::move(result.steal_entries())});
+ chunks.push_back(Chunk{result.steal_entries()});
if (result.isCompleted()
|| (maxChunks != 0 && chunks.size() >= maxChunks))
{