Skip to content

Commit

Permalink
Add special character to password to test escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixLC authored Dec 4, 2018
1 parent da59652 commit fecf1e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/support/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
postgres: {
database: process.env.SEQ_PG_DB || process.env.SEQ_DB || 'sequelize_test',
username: process.env.SEQ_PG_USER || process.env.SEQ_USER || 'postgres',
password: process.env.SEQ_PG_PW || process.env.SEQ_PW || 'postgres',
password: process.env.SEQ_PG_PW || process.env.SEQ_PW || 'post$gres',
host: process.env.SEQ_PG_HOST || process.env.SEQ_HOST || '127.0.0.1',
port: process.env.SEQ_PG_PORT || process.env.SEQ_PORT || 5432,
pool: {
Expand Down

0 comments on commit fecf1e6

Please sign in to comment.