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);