Skip to content

Commit

Permalink
Fix a test in DeviceControllerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
JanOppolzer committed Aug 1, 2024
1 parent 6d2eba5 commit 3c84287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/Http/Controllers/DeviceControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ public function a_user_with_permissions_can_see_devices_details(): void
->followingRedirects()
->get(route('devices.show', $device))
->assertOk()
->assertSeeTextInOrder([$device->mac, $device->name, $device->description ?? '--']);
->assertSeeTextInOrder([$device->mac, $device->name, $device->description]);
}

#[Test]
Expand Down

0 comments on commit 3c84287

Please sign in to comment.