diff options
Diffstat (limited to 'tests/api_test.php')
-rw-r--r-- | tests/api_test.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/api_test.php b/tests/api_test.php index 5f7b8e2..c2a2f80 100644 --- a/tests/api_test.php +++ b/tests/api_test.php @@ -276,9 +276,11 @@ final class local_webhooks_api_testcase extends advanced_testcase { public function test_get_services_with_conditions() { $this->resetAfterTest(); + $records = []; $total = random_int(5, 20); + $limit = intdiv($total, 2); - $records = []; + // Creating some records. for ($i = 0; $i < $total; $i++) { $record = self::get_random_record(); $record->id = api::add_service($record); @@ -292,7 +294,6 @@ final class local_webhooks_api_testcase extends advanced_testcase { ])); // Testing limit fields. - $limit = intdiv($total, 2); self::assertCount($limit, api::get_services([], null, 1, $limit)); // Testing sort fields. |