Skip to content

Commit

Permalink
Fix another test in DeviceControllerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
JanOppolzer committed Aug 1, 2024
1 parent 3c84287 commit 423da6b
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 @@ -525,7 +525,7 @@ public function an_admin_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]
Expand Down

0 comments on commit 423da6b

Please sign in to comment.