From fe76333ec21b093a9970db865a8eb718bc44c5b3 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Tue, 4 Mar 2025 17:10:39 -0600 Subject: [PATCH] fix test --- tests/Feature/Assets/Ui/EditAssetTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Feature/Assets/Ui/EditAssetTest.php b/tests/Feature/Assets/Ui/EditAssetTest.php index 24a8fa7b48..13e275202f 100644 --- a/tests/Feature/Assets/Ui/EditAssetTest.php +++ b/tests/Feature/Assets/Ui/EditAssetTest.php @@ -96,9 +96,9 @@ class EditAssetTest extends TestCase $this->actingAs(User::factory()->viewAssets()->editAssets()->create()) ->from(route('hardware.edit', $asset)) ->put(route('hardware.update', $asset), [ - 'status_id' => $achived_status->id, - 'model_id' => $asset->model_id, - 'asset_tags' => $asset->asset_tag, + 'status_id' => $archived_status->id, + 'model_id' => $asset->model_id, + 'asset_tags' => $asset->asset_tag, ], ) ->assertStatus(302);