From f9697887e8aa18c80e76321a075399df7f1a4808 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 12 Dec 2023 13:41:35 +0000 Subject: [PATCH] Removed extraneous test Signed-off-by: snipe --- tests/Unit/AssetMaintenanceTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Unit/AssetMaintenanceTest.php b/tests/Unit/AssetMaintenanceTest.php index b5ee25cf2b..69c4c30938 100644 --- a/tests/Unit/AssetMaintenanceTest.php +++ b/tests/Unit/AssetMaintenanceTest.php @@ -46,7 +46,5 @@ class AssetMaintenanceTest extends TestCase $this->assertTrue($c->completion_date === null); $c->completion_date = '0000-00-00'; $this->assertTrue($c->completion_date === null); - $c->completion_date = '2017-05-12'; - $this->assertTrue($c->completion_date == Carbon::parse('2017-05-12')); } }