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

Commit 02d15ca9 by sevastos

Strict equality comparison for BigInts

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