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

Commit 45f8a7c3 by José Moreira

sequelize.set: commiting transaction

1 parent 739554bd
Showing with 8 additions and 2 deletions
......@@ -464,7 +464,10 @@ describe(Support.getTestDialectTeaser("Sequelize"), function () {
expect( data ).to.be.ok
expect( data.foo ).to.be.equal( 'bar' )
})
.done( done )
.then(function () {
return t.commit()
})
.then( done )
})
})
......@@ -485,7 +488,10 @@ describe(Support.getTestDialectTeaser("Sequelize"), function () {
expect( data.foo ).to.be.equal( 'bar' )
expect( data.foos ).to.be.equal( 'bars' )
})
.done( done )
.then(function () {
return t.commit()
})
.then( done )
})
})
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!