Skip to content

Commit 7b5caa5

Browse files
committed
Fix tests
1 parent e645156 commit 7b5caa5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
"composer/semver": "^3.3",
2828
"guzzlehttp/guzzle": "^7.5",
2929
"illuminate/contracts": "^10.0 | ^11.0",
30+
"pestphp/pest": "^2.30",
3031
"twig/twig": "^3.0"
3132
},
3233
"require-dev": {
3334
"laravel/pint": "^1.13.7",
3435
"nunomaduro/collision": "^7.0 | ^8.0",
35-
"orchestra/testbench": "^8.19 | ^9.0",
36-
"pestphp/pest": "3.x-dev"
36+
"orchestra/testbench": "^8.19 | ^9.0"
3737
},
3838
"autoload": {
3939
"psr-4": {

tests/HelpersTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ public function testItReturnsPackagePath(): void
1818
{
1919
$path = package_path();
2020

21-
self::assertEquals(dirname(__FILE__, 3), $path);
21+
self::assertEquals(dirname(__FILE__, 2), $path);
2222
}
2323

2424
public function testItReturnsPackagePathSubPath(): void
2525
{
2626
$path = package_path('composer.json');
2727

28-
self::assertEquals(dirname(__FILE__, 3).'/composer.json', $path);
28+
self::assertEquals(dirname(__FILE__, 2).'/composer.json', $path);
2929
}
3030
}

0 commit comments

Comments
 (0)