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

Commit 6ce0bef1 by Jan Aagaard Meier

spaces ftw

1 parent d203ac81
Showing with 9 additions and 9 deletions
...@@ -912,15 +912,15 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () { ...@@ -912,15 +912,15 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () {
}) })
it('properly handles a model with a length column', function (done) { it('properly handles a model with a length column', function (done) {
var UserWithLength = this.sequelize.define('UserWithLength', { var UserWithLength = this.sequelize.define('UserWithLength', {
length: Sequelize.INTEGER length: Sequelize.INTEGER
}) })
UserWithLength.sync({force:true}).success(function() { UserWithLength.sync({force:true}).success(function() {
UserWithLength.bulkCreate([{ length: 42}, {length: 11}]).success(function () { UserWithLength.bulkCreate([{ length: 42}, {length: 11}]).success(function () {
done() done()
}) })
}) })
}) })
it('stores the current date in createdAt', function(done) { it('stores the current date in createdAt', function(done) {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!