From e3ca94182a46ff123d993982168131c382790017 Mon Sep 17 00:00:00 2001 From: Jan Oppolzer Date: Thu, 1 Aug 2024 13:25:33 +0200 Subject: [PATCH] Additional test fix in DeviceControllerTest --- tests/Feature/Http/Controllers/DeviceControllerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/Http/Controllers/DeviceControllerTest.php b/tests/Feature/Http/Controllers/DeviceControllerTest.php index ee6ec50..06cebe7 100644 --- a/tests/Feature/Http/Controllers/DeviceControllerTest.php +++ b/tests/Feature/Http/Controllers/DeviceControllerTest.php @@ -309,7 +309,7 @@ public function a_user_with_permissions_can_see_devices_edit_form(): void ->followingRedirects() ->get(route('devices.edit', $device)) ->assertOk() - ->assertSeeInOrder([$device->mac, $device->name, $device->description ?? '--']); + ->assertSeeInOrder([$device->mac, $device->name, $device->description]); } #[Test]