Skip to content

Commit 73e59dc

Browse files
fix test that was breaking everything
1 parent 630df51 commit 73e59dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interfaces/queryable/modifiers/greaterThan.modifier.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ describe('Queryable Interface', function() {
264264
});
265265

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

0 commit comments

Comments
 (0)