Skip to content

Commit

Permalink
Move database.config file out of /database directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
jvlGrab committed Jan 23, 2015
1 parent 4875574 commit 62fb137
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/bootstrap-nst.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/database/database.config';
require_once __DIR__ . '/database.config';

global $TEST_CFG;

Expand Down
2 changes: 1 addition & 1 deletion tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php
require_once __DIR__ . '/database/database.config';
require_once __DIR__ . '/database.config';

global $TEST_CFG;

Expand Down
2 changes: 1 addition & 1 deletion tests/database/database.config → tests/database.config
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ $cfg = [
],
'sqlite' => [
'dbType' => 'sqlite',
'filePath' => __DIR__ . '/../phprbac_tests.sqlite3',
'filePath' => __DIR__ . '/phprbac_tests.sqlite3',
'pfx' => 'phprbac_',
],
'pgsql' => [
Expand Down

0 comments on commit 62fb137

Please sign in to comment.