diff --git a/tests/OffsetAdapterTest.php b/tests/OffsetAdapterTest.php index f99c845..842d5ea 100644 --- a/tests/OffsetAdapterTest.php +++ b/tests/OffsetAdapterTest.php @@ -87,6 +87,7 @@ public function testLoopTerminatesAfterRequestedLimit(): void $counter = 0; $callback = function (int $page, int $size) use (&$counter) { $counter++; + return new ArraySourceResult(range(1, $size)); };