Skip to content

Commit

Permalink
Fix travis database connection
Browse files Browse the repository at this point in the history
Reference the correct variable names
  • Loading branch information
mfairchild365 committed Feb 25, 2014
1 parent 6b03ca8 commit 915a964
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.sample.php
Expand Up @@ -54,7 +54,7 @@

//Set the config to match the production config for travis CI
Config::set('TEST_DB_HOST' , Config::get('DB_HOST'));
Config::set('TEST_DB_USER' , Config::get('TEST_DB_USER'));
Config::set('TEST_DB_PASSWORD' , Config::get('TEST_DB_PASSWORD'));
Config::set('TEST_DB_NAME' , Config::get('TEST_DB_NAME'));
Config::set('TEST_DB_USER' , Config::get('DB_USER'));
Config::set('TEST_DB_PASSWORD' , Config::get('DB_PASSWORD'));
Config::set('TEST_DB_NAME' , Config::get('DB_NAME'));
}

0 comments on commit 915a964

Please sign in to comment.