diff options
author | Andrew Nacin <nacin@git.wordpress.org> | 2013-09-03 23:59:26 +0000 |
---|---|---|
committer | Andrew Nacin <nacin@git.wordpress.org> | 2013-09-03 23:59:26 +0000 |
commit | d8e8eada528e0fb5030273e17c3acf78261e4cc0 (patch) | |
tree | 34c16f86f57fa3f003052fa92dbf27e18f30209a /wp-tests-config-sample.php | |
parent | a2a7f08b1b49c590c8348be114f079a23074973f (diff) | |
download | wordpress-d8e8eada528e0fb5030273e17c3acf78261e4cc0.tar.gz wordpress-d8e8eada528e0fb5030273e17c3acf78261e4cc0.zip |
Change DB_NAME in wp-tests-config-sample.php to be something other than the placeholder in wp-config-sample.php.
git-svn-id: https://develop.svn.wordpress.org/trunk@25223 602fd350-edb4-49c9-b593-d223f7449a82
Diffstat (limited to 'wp-tests-config-sample.php')
-rw-r--r-- | wp-tests-config-sample.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-tests-config-sample.php b/wp-tests-config-sample.php index e6f0e1e1ed..4e2159ca65 100644 --- a/wp-tests-config-sample.php +++ b/wp-tests-config-sample.php @@ -21,7 +21,7 @@ define( 'ABSPATH', dirname( __FILE__ ) . '/src/' ); // These tests will DROP ALL TABLES in the database with the prefix named below. // DO NOT use a production database or one that is shared with something else. -define( 'DB_NAME', 'yourdbnamehere' ); +define( 'DB_NAME', 'youremptytestdbnamehere' ); define( 'DB_USER', 'yourusernamehere' ); define( 'DB_PASSWORD', 'yourpasswordhere' ); define( 'DB_HOST', 'localhost' ); |