From 91bb7589e201449f6831e4961bab0c330a277a52 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Sun, 3 Aug 2025 09:31:31 -0600 Subject: [PATCH] fix: wording on exception --- src/Exceptions/TestCaseAlreadyInUse.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Exceptions/TestCaseAlreadyInUse.php b/src/Exceptions/TestCaseAlreadyInUse.php index 7ebf6232..926c8ea6 100644 --- a/src/Exceptions/TestCaseAlreadyInUse.php +++ b/src/Exceptions/TestCaseAlreadyInUse.php @@ -19,7 +19,11 @@ final class TestCaseAlreadyInUse extends InvalidArgumentException implements Exc */ public function __construct(string $inUse, string $newOne, string $folder) { - parent::__construct(sprintf('Test case `%s` can not be used. The folder `%s` already uses the test case `%s`', - $newOne, $folder, $inUse)); + parent::__construct(sprintf( + 'Test case [%s] can not be used. The folder [%s] already uses the test case [%s].', + $newOne, + $folder, + $inUse, + )); } }