Skip to content

Commit ebfbe57

Browse files
committed
Merge pull request #1188 from drew-gross/fix-flaky-test
Fix flaky test
2 parents 7738d33 + b8b8626 commit ebfbe57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/QueryTools.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe('matchesQuery', function() {
151151
q = new Parse.Query('Person');
152152
q.equalTo('birthday', day);
153153
expect(matchesQuery(obj, q)).toBe(true);
154-
q.equalTo('birthday', new Date());
154+
q.equalTo('birthday', new Date(1990, 1));
155155
expect(matchesQuery(obj, q)).toBe(false);
156156

157157
q = new Parse.Query('Person');

0 commit comments

Comments
 (0)