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

Commit 78a80a98 by Jan Aagaard Meier

Merge pull request #632 from sevastos/bigint-turnt-to-int-after-save

Identity comparison for bigint
2 parents 2eb96be5 02d15ca9
Showing with 1 additions and 1 deletions
...@@ -357,7 +357,7 @@ describe(Helpers.getTestDialectTeaser("DAOFactory"), function() { ...@@ -357,7 +357,7 @@ describe(Helpers.getTestDialectTeaser("DAOFactory"), function() {
User.sync({ force: true }).success(function() { User.sync({ force: true }).success(function() {
User.create({ big: '9223372036854775807' }).on('success', function(user) { User.create({ big: '9223372036854775807' }).on('success', function(user) {
expect(user.big).toEqual( '9223372036854775807' ) expect(user.big).toBe( '9223372036854775807' )
done() done()
}) })
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!