Skip to content

Commit 20a61a1

Browse files
committed
Merge branch '8.x' into 9.x
2 parents 688c376 + 2a02cee commit 20a61a1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Functions/PackagePathTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,22 +26,22 @@ public function it_can_resolve_correct_package_path(string $path)
2626
{
2727
$this->assertSame(
2828
realpath(join_paths(__DIR__, 'PackagePathTest.php')),
29-
package_path(join_paths('./tests', 'Helpers', 'PackagePathTest.php'))
29+
package_path(join_paths('./tests', 'Functions', 'PackagePathTest.php'))
3030
);
3131

3232
$this->assertSame(
3333
realpath(join_paths(__DIR__, 'PackagePathTest.php')),
34-
package_path(join_paths('tests', 'Helpers', 'PackagePathTest.php'))
34+
package_path(join_paths('tests', 'Functions', 'PackagePathTest.php'))
3535
);
3636

3737
$this->assertSame(
3838
realpath(join_paths(__DIR__, 'PackagePathTest.php')),
39-
package_path(DIRECTORY_SEPARATOR.join_paths('tests', 'Helpers', 'PackagePathTest.php'))
39+
package_path(DIRECTORY_SEPARATOR.join_paths('tests', 'Functions', 'PackagePathTest.php'))
4040
);
4141

4242
$this->assertSame(
4343
realpath(join_paths(__DIR__, 'PackagePathTest.php')),
44-
package_path(join_paths('tests', 'Helpers', 'PackagePathTest.php'))
44+
package_path(join_paths('tests', 'Functions', 'PackagePathTest.php'))
4545
);
4646
}
4747

0 commit comments

Comments
 (0)