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

Commit 0de0fa23 by David Pate

Added in a `return` call. Was adding this from the old code and forgot to do flow control on it...

1 parent 6e72f2cc
Showing with 2 additions and 0 deletions
......@@ -13,6 +13,7 @@ describe(Support.getTestDialectTeaser("Configuration"), function() {
if (dialect === 'mariadb') {
console.log('This dialect doesn\'t support me :(')
expect(true).to.be.true // Silence Buster
return;
}
var seq = new Sequelize(config[dialect].database, config[dialect].username, config[dialect].password, {storage: '/path/to/no/where/land', logging: false, host: '0.0.0.1', port: config[dialect].port, dialect: dialect})
......@@ -28,6 +29,7 @@ describe(Support.getTestDialectTeaser("Configuration"), function() {
if (dialect === 'mariadb') {
console.log('This dialect doesn\'t support me :(')
expect(true).to.be.true // Silence Buster
return;
}
var seq = new Sequelize(config[dialect].database, config[dialect].username, 'fakepass123', {logging: false, host: config[dialect].host, port: 1, dialect: dialect})
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!