From 856f272876f6b899bb99baf35af155faf5174b01 Mon Sep 17 00:00:00 2001 From: marcelmanzel Date: Mon, 20 Nov 2023 11:29:00 +0100 Subject: [PATCH] OXDEV-7325: Remove unnecessary empty lines --- tests/Unit/Infrastructure/ShopSettingRepositoryTest.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/Unit/Infrastructure/ShopSettingRepositoryTest.php b/tests/Unit/Infrastructure/ShopSettingRepositoryTest.php index 0119e99..bfb7653 100644 --- a/tests/Unit/Infrastructure/ShopSettingRepositoryTest.php +++ b/tests/Unit/Infrastructure/ShopSettingRepositoryTest.php @@ -21,7 +21,6 @@ public function testGetShopSettingInteger(): void { $nameID = new ID('integerSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance('123'); $integer = $repository->getInteger($nameID); @@ -55,7 +54,6 @@ public function testGetShopSettingFloat(): void { $nameID = new ID('floatSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance('1.23'); $float = $repository->getFloat($nameID); @@ -89,7 +87,6 @@ public function testGetShopSettingBooleanNegativ(): void { $nameID = new ID('booleanSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance(''); $boolean = $repository->getBoolean($nameID); @@ -101,7 +98,6 @@ public function testGetShopSettingBooleanPositiv(): void { $nameID = new ID('booleanSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance('1'); $boolean = $repository->getBoolean($nameID); @@ -124,7 +120,6 @@ public function testGetShopSettingString(): void { $nameID = new ID('stringSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance('default'); $string = $repository->getString($nameID); @@ -147,7 +142,6 @@ public function testGetShopSettingSelect(): void { $nameID = new ID('selectSetting'); - $repository = $this->getFetchOneShopSettingRepoInstance('select'); $select = $repository->getSelect($nameID);