From 2887d212e38b124372a91b07fe9680f40be60955 Mon Sep 17 00:00:00 2001 From: luke Date: Fri, 13 Aug 2021 10:30:26 +0100 Subject: [PATCH] CS fix --- tests/Unit/TestSuite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/TestSuite.php b/tests/Unit/TestSuite.php index 96263a3a..8d4cbf05 100644 --- a/tests/Unit/TestSuite.php +++ b/tests/Unit/TestSuite.php @@ -23,7 +23,7 @@ it('alerts users about tests with arguments but no input', function () { sprintf("A test with the description '%s' has %d argument(s) ([%s]) and no dataset(s) provided in %s", 'foo', 1, 'int $arg', __FILE__), ); -it('can return an array of all test suite filenames', function() { +it('can return an array of all test suite filenames', function () { $testSuite = new TestSuite(getcwd(), 'tests'); $test = function () {}; $testSuite->tests->set(new \Pest\Factories\TestCaseFactory(__FILE__, 'foo', $test));