Skip to content

Commit

Permalink
Merge pull request #1188 from drew-gross/fix-flaky-test
Browse files Browse the repository at this point in the history
Fix flaky test
  • Loading branch information
flovilmart committed Mar 25, 2016
2 parents 7738d33 + b8b8626 commit ebfbe57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/QueryTools.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ describe('matchesQuery', function() {
q = new Parse.Query('Person');
q.equalTo('birthday', day);
expect(matchesQuery(obj, q)).toBe(true);
q.equalTo('birthday', new Date());
q.equalTo('birthday', new Date(1990, 1));
expect(matchesQuery(obj, q)).toBe(false);

q = new Parse.Query('Person');
Expand Down

0 comments on commit ebfbe57

Please sign in to comment.