Skip to content

Commit

Permalink
Fix test migration paths
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed Nov 17, 2016
1 parent e7b69e1 commit 7bb911d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/TeamworkTeamInviteTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function setUp()

$this->artisan('migrate', [
'--database' => 'testing',
'--realpath' => realpath(__DIR__.'/../src/database'),
'--realpath' => realpath(__DIR__.'/../src/database/migrations'),
]);

$this->user = new User();
Expand Down
2 changes: 1 addition & 1 deletion tests/TeamworkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function setUp()

$this->artisan('migrate', [
'--database' => 'testing',
'--realpath' => realpath(__DIR__.'/../src/database'),
'--realpath' => realpath(__DIR__.'/../src/database/migrations'),
]);

$this->user = new User();
Expand Down
2 changes: 1 addition & 1 deletion tests/UsedByTeamsTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function setUp()

$this->artisan('migrate', [
'--database' => 'testing',
'--realpath' => realpath(__DIR__.'/../src/database'),
'--realpath' => realpath(__DIR__.'/../src/database/migrations'),
]);

$this->user = new User();
Expand Down
2 changes: 1 addition & 1 deletion tests/UserHasTeamsTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function setUp()

$this->artisan('migrate', [
'--database' => 'testing',
'--realpath' => realpath(__DIR__.'/../src/database'),
'--realpath' => realpath(__DIR__.'/../src/database/migrations'),
]);

$this->user = new User();
Expand Down

0 comments on commit 7bb911d

Please sign in to comment.