From 5b77e66d2886a5ab8a1fe525bb911fd23eefc977 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Tue, 28 Nov 2023 17:16:17 -0600 Subject: [PATCH] get rid of deleted_at as it doesn't do anything --- tests/Feature/Api/Assets/AssetStoreTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Feature/Api/Assets/AssetStoreTest.php b/tests/Feature/Api/Assets/AssetStoreTest.php index eff1ed34c3..569c1d9caa 100644 --- a/tests/Feature/Api/Assets/AssetStoreTest.php +++ b/tests/Feature/Api/Assets/AssetStoreTest.php @@ -197,7 +197,6 @@ class AssetStoreTest extends TestCase 'asset_tag' => $asset_tag, 'model_id' => $model->id, 'status_id' => $status->id, - 'deleted_at' => null, ]) ->assertOk() ->assertStatusMessageIs('success'); @@ -207,7 +206,6 @@ class AssetStoreTest extends TestCase 'asset_tag' => $asset_tag, 'model_id' => $model->id, 'status_id' => $status->id, - 'deleted_at' => null, ]) ->assertOk() ->assertStatusMessageIs('error');