From a47eeeb05947dfc1639433673d4f8a4b5177d341 Mon Sep 17 00:00:00 2001 From: Joseph Date: Tue, 4 Aug 2026 19:40:55 +0100 Subject: [PATCH 1/2] tests\Endpoints: remove check for token from testGetAll() --- tests/Endpoints/ApplicationTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/Endpoints/ApplicationTest.php b/tests/Endpoints/ApplicationTest.php index b076212..fcf2ae0 100644 --- a/tests/Endpoints/ApplicationTest.php +++ b/tests/Endpoints/ApplicationTest.php @@ -75,7 +75,6 @@ public function testGetAll(): void $this->assertObjectHasProperty('id', $app); $this->assertObjectHasProperty('name', $app); $this->assertObjectHasProperty('description', $app); - $this->assertObjectHasProperty('token', $app); } } From 0842a19a7dcd3026c0f68143b1c5e44beff384c3 Mon Sep 17 00:00:00 2001 From: Joseph Date: Tue, 4 Aug 2026 19:41:19 +0100 Subject: [PATCH 2/2] tests\Endpoints: remove check for token from testGetAll() --- tests/Endpoints/ClientTest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/Endpoints/ClientTest.php b/tests/Endpoints/ClientTest.php index b83680b..a154e83 100644 --- a/tests/Endpoints/ClientTest.php +++ b/tests/Endpoints/ClientTest.php @@ -70,7 +70,6 @@ public function testGetAll(): void $this->assertObjectHasProperty('id', $client); $this->assertObjectHasProperty('name', $client); - $this->assertObjectHasProperty('token', $client); $this->assertObjectHasProperty('lastUsed', $client); } }