Skip to content

Commit

Permalink
OXDEV-7325: Remove unnecessary empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelOxid committed Nov 20, 2023
1 parent 5c53143 commit 856f272
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/Unit/Infrastructure/ShopSettingRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ public function testGetShopSettingInteger(): void
{
$nameID = new ID('integerSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('123');

$integer = $repository->getInteger($nameID);
Expand Down Expand Up @@ -55,7 +54,6 @@ public function testGetShopSettingFloat(): void
{
$nameID = new ID('floatSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('1.23');

$float = $repository->getFloat($nameID);
Expand Down Expand Up @@ -89,7 +87,6 @@ public function testGetShopSettingBooleanNegativ(): void
{
$nameID = new ID('booleanSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('');

$boolean = $repository->getBoolean($nameID);
Expand All @@ -101,7 +98,6 @@ public function testGetShopSettingBooleanPositiv(): void
{
$nameID = new ID('booleanSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('1');

$boolean = $repository->getBoolean($nameID);
Expand All @@ -124,7 +120,6 @@ public function testGetShopSettingString(): void
{
$nameID = new ID('stringSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('default');

$string = $repository->getString($nameID);
Expand All @@ -147,7 +142,6 @@ public function testGetShopSettingSelect(): void
{
$nameID = new ID('selectSetting');


$repository = $this->getFetchOneShopSettingRepoInstance('select');

$select = $repository->getSelect($nameID);
Expand Down

0 comments on commit 856f272

Please sign in to comment.