Skip to content

Commit

Permalink
fixing test failure from merge
Browse files Browse the repository at this point in the history
  • Loading branch information
chanind committed Mar 5, 2018
1 parent 589876a commit b8b3341
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/__tests__/Quiz-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ describe('Quiz', () => {
await resolvePromises();

quiz.startUserStroke({x: 10.93234, y: 20.4567978});
quiz.continueUserStroke({x: 11.87, y: 23.4444});
quiz.endUserStroke();

await resolvePromises();
Expand All @@ -488,8 +489,8 @@ describe('Quiz', () => {
strokesRemaining: 1,
totalMistakes: 0,
drawnPath: {
pathString: 'M 10.9 20.5',
points: [{x: 15.9, y: 25.5}],
pathString: 'M 10.9 20.5 L 11.9 23.4',
points: [{x: 15.9, y: 25.5}, {x: 16.9, y: 28.4}],
},
});
});
Expand Down

0 comments on commit b8b3341

Please sign in to comment.