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

Commit 8cab571a by Sascha Depold

fixed moved tests

1 parent ed4aa9fe
Showing with 4 additions and 4 deletions
......@@ -1279,8 +1279,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
describe('destroy', function() {
it('deletes a record from the database if dao is not paranoid', function(done) {
var UserDestroy = this.sequelize.define('UserDestroy', {
name: Sequelize.STRING,
bio: Sequelize.TEXT
name: Support.Sequelize.STRING,
bio: Support.Sequelize.TEXT
})
UserDestroy.sync({ force: true }).success(function() {
......@@ -1300,8 +1300,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
it('allows sql logging of delete statements', function(done) {
var UserDelete = this.sequelize.define('UserDelete', {
name: Sequelize.STRING,
bio: Sequelize.TEXT
name: Support.Sequelize.STRING,
bio: Support.Sequelize.TEXT
})
UserDelete.sync({ force: true }).success(function() {
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!