Skip to content

Commit

Permalink
fix test that was breaking everything
Browse files Browse the repository at this point in the history
  • Loading branch information
particlebanana committed Feb 5, 2016
1 parent 630df51 commit 73e59dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ describe('Queryable Interface', function() {
});

it('should return records with symbolic usage >= usage when searching dates as strings', function(done) {
Queryable.User.find({ type: testName, dob: { '>=': 'Sat Nov 09 2013 00:00:00 GMT-0600 (CST)' }}).sort('first_name').exec(function(err, users) {
Queryable.User.find({ type: testName, dob: { '>=': 'Sat Nov 09 2013 00:00:00 GMT-0000 (CST)' }}).sort('first_name').exec(function(err, users) {
assert(!err);
assert(Array.isArray(users));
assert.strictEqual(users.length, 2);
Expand Down

0 comments on commit 73e59dc

Please sign in to comment.