不要怂,就是干,撸起袖子干!

Commit 83a014eb by Sascha Depold Committed by GitHub

Fix failing pg native tests (#13547)

* test(pg): debugging github actions

* test(pg): fix missing credential test

* test(pg): clean-up fix
1 parent e439ab42
Showing with 1 additions and 1 deletions
...@@ -438,7 +438,7 @@ describe(Support.getTestDialectTeaser('Sequelize'), () => { ...@@ -438,7 +438,7 @@ describe(Support.getTestDialectTeaser('Sequelize'), () => {
'role "bar" does not exist', 'role "bar" does not exist',
'FATAL: role "bar" does not exist', 'FATAL: role "bar" does not exist',
'password authentication failed for user "bar"' 'password authentication failed for user "bar"'
].includes(err.message.trim())); ].some(fragment => err.message.includes(fragment)));
} else if (dialect === 'mssql') { } else if (dialect === 'mssql') {
expect(err.message).to.equal('Login failed for user \'bar\'.'); expect(err.message).to.equal('Login failed for user \'bar\'.');
} else { } else {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!