Skip to content

Commit 756545d

Browse files
committed
Unnecessary dependency removed.
1 parent 3b3c7f5 commit 756545d

File tree

3 files changed

+4
-159
lines changed

3 files changed

+4
-159
lines changed

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^7.0",
20-
"orchestra/testbench": "3.6.*",
21-
"illuminated/helper-functions": "5.6.*"
20+
"orchestra/testbench": "3.6.*"
2221
},
2322
"autoload": {
2423
"psr-4": {

composer.lock

Lines changed: 1 addition & 156 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/TestingTools/TestCase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ protected function setUpDatabase()
3636

3737
$this->artisan('migrate', [
3838
'--database' => 'testing',
39-
'--path' => relative_path(__DIR__, base_path()) . '/fixture/database/migrations/',
39+
'--realpath' => true,
40+
'--path' => __DIR__ . '/fixture/database/migrations/',
4041
]);
4142
$this->seeInArtisanOutput('Migrated');
4243
}

0 commit comments

Comments
 (0)