Skip to content

Commit

Permalink
🤖 PHPCBF
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE authored and github-actions[bot] committed Feb 22, 2024
1 parent 3cb3317 commit 6cb008b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Unit/Composer/Extra/StraussConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function testGetters()

self::assertContains('pimple/pimple', $sut->getPackages());

self::assertEqualsRN( 'target_directory' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());
self::assertEqualsRN('target_directory' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());

self::assertEqualsRN("BrianHenryIE\\Strauss", $sut->getNamespacePrefix());

Expand Down Expand Up @@ -171,7 +171,7 @@ public function testDefaultTargetDir()

$sut = new StraussConfig($composer, $this->createMock(InputInterface::class));

self::assertEqualsRN( 'vendor-prefixed' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());
self::assertEqualsRN('vendor-prefixed' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());
}

/**
Expand Down Expand Up @@ -589,7 +589,7 @@ public function testMapMozartConfig()

self::assertContains('pimple/pimple', $sut->getPackages());

self::assertEqualsRN( 'dep_directory' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());
self::assertEqualsRN('dep_directory' . DIRECTORY_SEPARATOR, $sut->getTargetDirectory());

self::assertEqualsRN("My_Mozart_Config", $sut->getNamespacePrefix());

Expand Down

0 comments on commit 6cb008b

Please sign in to comment.