From aafbd04753520f8839e2edcde3e8ee07733aa5fa Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sat, 18 Feb 2023 16:46:34 +0000 Subject: [PATCH] style: removes unused variable --- src/Factories/TestCaseFactory.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Factories/TestCaseFactory.php b/src/Factories/TestCaseFactory.php index 9f3dc0ec..50043648 100644 --- a/src/Factories/TestCaseFactory.php +++ b/src/Factories/TestCaseFactory.php @@ -144,7 +144,6 @@ final class TestCaseFactory if ('' === trim($className)) { $className = 'InvalidTestName'.Str::random(); - $classFQN .= $className; } $classAvailableAttributes = array_filter(self::ATTRIBUTES, fn (string $attribute): bool => $attribute::$above);