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

Commit 253b149a by wenyuxiang

fix copy/paste mistake

1 parent 2a347ad2
Showing with 1 additions and 1 deletions
...@@ -2755,7 +2755,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () { ...@@ -2755,7 +2755,7 @@ describe(Support.getTestDialectTeaser("DAOFactory"), function () {
it('does not modify the passed arguments', function (done) { it('does not modify the passed arguments', function (done) {
var options = { where: ['username = ?', 'user1']} var options = { where: ['username = ?', 'user1']}
this.UserPrimary.count(options).success(function(count) { this.User.count(options).success(function(count) {
expect(options).to.deep.equal({ where: ['username = ?', 'user1']}) expect(options).to.deep.equal({ where: ['username = ?', 'user1']})
done() done()
}) })
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!