Skip to content

Commit

Permalink
Additional test fix in DeviceControllerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
JanOppolzer committed Aug 1, 2024
1 parent 423da6b commit e3ca941
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 @@ -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]
Expand Down

0 comments on commit e3ca941

Please sign in to comment.