Skip to content

Commit

Permalink
fix: database host for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gwemox committed Apr 18, 2024
1 parent 6c9e131 commit 284341c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/config/mysql.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="false" stopOnFailure="false" bootstrap="../bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<var name="db_type" value="pdo_mysql"/>
<var name="db_host" value="127.0.0.1"/>
<var name="db_host" value="database"/>
<var name="db_username" value="travis"/>
<var name="db_password" value="travis"/>
<var name="db_name" value="doctrine_extensions_tests"/>
Expand Down
2 changes: 1 addition & 1 deletion tests/config/pgsql.phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="false" stopOnFailure="false" bootstrap="../bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<php>
<var name="db_type" value="pdo_pgsql"/>
<var name="db_host" value="127.0.0.1"/>
<var name="db_host" value="database"/>
<var name="db_username" value="travis"/>
<var name="db_password" value="travis"/>
<var name="db_name" value="doctrine_extensions_tests"/>
Expand Down

0 comments on commit 284341c

Please sign in to comment.