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

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 () { ...@@ -1279,8 +1279,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
describe('destroy', function() { describe('destroy', function() {
it('deletes a record from the database if dao is not paranoid', function(done) { it('deletes a record from the database if dao is not paranoid', function(done) {
var UserDestroy = this.sequelize.define('UserDestroy', { var UserDestroy = this.sequelize.define('UserDestroy', {
name: Sequelize.STRING, name: Support.Sequelize.STRING,
bio: Sequelize.TEXT bio: Support.Sequelize.TEXT
}) })
UserDestroy.sync({ force: true }).success(function() { UserDestroy.sync({ force: true }).success(function() {
...@@ -1300,8 +1300,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () { ...@@ -1300,8 +1300,8 @@ describe(Support.getTestDialectTeaser("DAO"), function () {
it('allows sql logging of delete statements', function(done) { it('allows sql logging of delete statements', function(done) {
var UserDelete = this.sequelize.define('UserDelete', { var UserDelete = this.sequelize.define('UserDelete', {
name: Sequelize.STRING, name: Support.Sequelize.STRING,
bio: Sequelize.TEXT bio: Support.Sequelize.TEXT
}) })
UserDelete.sync({ force: true }).success(function() { 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!