1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00

Get tests back in working order

This commit is contained in:
Dane Everitt 2021-04-17 12:02:08 -07:00
parent f973285e04
commit f5ca391400
No known key found for this signature in database
GPG Key ID: EEA66103B3D71F53
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ class LocationControllerTest extends ApplicationApiIntegrationTestCase
{
$locations = Location::factory()->times(2)->create();
$response = $this->getJson('/api/application/locations');
$response = $this->getJson('/api/application/locations?per_page=60');
$response->assertStatus(Response::HTTP_OK);
$response->assertJsonCount(2, 'data');
$response->assertJsonStructure([
@ -38,7 +38,7 @@ class LocationControllerTest extends ApplicationApiIntegrationTestCase
'pagination' => [
'total' => 2,
'count' => 2,
'per_page' => 100,
'per_page' => 60,
'current_page' => 1,
'total_pages' => 1,
],

View File

@ -18,7 +18,7 @@ class UserControllerTest extends ApplicationApiIntegrationTestCase
{
$user = User::factory()->create();
$response = $this->getJson('/api/application/users');
$response = $this->getJson('/api/application/users?per_page=60');
$response->assertStatus(Response::HTTP_OK);
$response->assertJsonCount(2, 'data');
$response->assertJsonStructure([
@ -38,7 +38,7 @@ class UserControllerTest extends ApplicationApiIntegrationTestCase
'pagination' => [
'total' => 2,
'count' => 2,
'per_page' => 100,
'per_page' => 60,
'current_page' => 1,
'total_pages' => 1,
],