Skip to content

Commit

Permalink
Update phpUnitBootstrap.php
Browse files Browse the repository at this point in the history
  • Loading branch information
mdnoble73 committed Mar 31, 2024
1 parent d93432f commit 4dca8d7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/phpunit/phpUnitBootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@
$baseAspenSQL = "$curDir/../../install/aspen.sql";

//Import blank database
/*$importCommand = "mysql -u$dbUser -p$dbPassword -h$dbHost -P$dbPort $dbName < $baseAspenSQL";
exec($importCommand);*/
$importCommand = "mysql -u$dbUser -p$dbPassword -h$dbHost -P$dbPort $dbName < $baseAspenSQL";
exec($importCommand);

////Import unit test specific data
/*$unitTestsSQL = "$curDir/../../tests/unit_tests.sql";
$unitTestsSQL = "$curDir/../../tests/unit_tests.sql";
$importCommand = "mysql -u$dbUser -p$dbPassword -h$dbHost -P$dbPort $dbName < $unitTestsSQL";
$results = [];
exec($importCommand, $results);*/
exec($importCommand, $results);

//Make sure solr is running?
Expand Down

0 comments on commit 4dca8d7

Please sign in to comment.