From 59725f203173f5eb9536d052d1356f8be2ca5df4 Mon Sep 17 00:00:00 2001 From: snipe Date: Mon, 19 Aug 2024 11:57:40 +0100 Subject: [PATCH] Removed extra debugging in test Signed-off-by: snipe --- tests/Unit/AssetTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Unit/AssetTest.php b/tests/Unit/AssetTest.php index ef0da1a1b8..d0f3af6233 100644 --- a/tests/Unit/AssetTest.php +++ b/tests/Unit/AssetTest.php @@ -146,10 +146,8 @@ class AssetTest extends TestCase $this->assertTrue($a->save()); $this->assertTrue($b->save()); - \Log::error("A asset tag is: " . $a->asset_tag); $matches = []; preg_match('/\d+/', $a->asset_tag, $matches); - \Log::error("digits are: " . $matches[0]); $this->assertEquals(Setting::getSettings()->next_auto_tag_base, $matches[0] + 1, "Next auto increment number should be the last normally-saved one plus one, but isn't"); }