From ffdf27e6066293624042cab35082aa6a21e3fc62 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Fri, 5 Mar 2021 09:08:07 -0700 Subject: [PATCH] tests(integration): fix NestControllerTest, and UserControllerTest --- tests/Integration/Api/Application/Nests/NestControllerTest.php | 2 +- tests/Integration/Api/Application/Users/UserControllerTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Integration/Api/Application/Nests/NestControllerTest.php b/tests/Integration/Api/Application/Nests/NestControllerTest.php index 679e152b7..7aba83c2f 100644 --- a/tests/Integration/Api/Application/Nests/NestControllerTest.php +++ b/tests/Integration/Api/Application/Nests/NestControllerTest.php @@ -48,7 +48,7 @@ class NestControllerTest extends ApplicationApiIntegrationTestCase 'pagination' => [ 'total' => 4, 'count' => 4, - 'per_page' => 50, + 'per_page' => 10, 'current_page' => 1, 'total_pages' => 1, 'links' => [], diff --git a/tests/Integration/Api/Application/Users/UserControllerTest.php b/tests/Integration/Api/Application/Users/UserControllerTest.php index 552c96380..8b2bc28c7 100644 --- a/tests/Integration/Api/Application/Users/UserControllerTest.php +++ b/tests/Integration/Api/Application/Users/UserControllerTest.php @@ -38,7 +38,7 @@ class UserControllerTest extends ApplicationApiIntegrationTestCase 'pagination' => [ 'total' => 2, 'count' => 2, - 'per_page' => 100, + 'per_page' => 10, 'current_page' => 1, 'total_pages' => 1, 'links' => [],