Skip to content
This repository was archived by the owner on Apr 28, 2024. It is now read-only.

Commit 8124216

Browse files
committed
Fix styling
1 parent ba470e3 commit 8124216

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

tests/BuildingLocatorTest.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -371,16 +371,16 @@ public function testGetResources($scheme, $file, $location, $expectedPaths): voi
371371
/**
372372
* Test when a location is outside the scope of the main locator path.
373373
* Could cause issue with absolute pathparsing.
374-
*
374+
*
375375
* @depends testGetResources
376376
*/
377377
public function testGetResourcesWithLocationOutsideMain(): void
378378
{
379379
$expectedPaths = [
380380
__DIR__.'/Poolhouse/files/test.json',
381-
$this->getBasePath() . 'Floors/Floor3/files/test.json',
382-
$this->getBasePath() . 'Floors/Floor2/files/test.json',
383-
$this->getBasePath() . 'Floors/Floor/files/test.json',
381+
$this->getBasePath().'Floors/Floor3/files/test.json',
382+
$this->getBasePath().'Floors/Floor2/files/test.json',
383+
$this->getBasePath().'Floors/Floor/files/test.json',
384384
];
385385

386386
$locator = self::$locator;
@@ -393,7 +393,6 @@ public function testGetResourcesWithLocationOutsideMain(): void
393393
$this->assertIsArray($resources);
394394
$this->assertCount(count($expectedPaths), $resources);
395395
$this->assertEquals($expectedPaths, array_map('strval', $resources));
396-
397396
}
398397

399398
/**

0 commit comments

Comments
 (0)