From 008963bed8e6535de9fa5f3283e70db9d1883028 Mon Sep 17 00:00:00 2001
From: Sebastian Bergmann <sb@sebastian-bergmann.de>
Date: Sun, 5 Feb 2023 16:45:12 +0100
Subject: [PATCH] Fix CS/WS issues

---
 tests/unit/Framework/TestBuilderTest.php | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/unit/Framework/TestBuilderTest.php b/tests/unit/Framework/TestBuilderTest.php
index ad639e71bfd..663ecc10c15 100644
--- a/tests/unit/Framework/TestBuilderTest.php
+++ b/tests/unit/Framework/TestBuilderTest.php
@@ -39,6 +39,7 @@ public static function provideWithAnnotationsAndDataProvider(): array
     public function testWithAnnotations(string $methodName): void
     {
         $test = (new TestBuilder)->build(new ReflectionClass(TestWithAnnotations::class), $methodName);
+
         $this->assertInstanceOf(TestWithAnnotations::class, $test);
     }
 
@@ -46,6 +47,7 @@ public function testWithAnnotations(string $methodName): void
     public function testWithAnnotationsAndDataProvider(string $methodName): void
     {
         $test = (new TestBuilder)->build(new ReflectionClass(TestWithAnnotations::class), $methodName);
+
         $this->assertInstanceOf(DataProviderTestSuite::class, $test);
     }
 }