Skip to content

Commit

Permalink
fix: resolves issue with test (code-differently#94)
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony D. Mays <[email protected]>
  • Loading branch information
anthonydmays authored Sep 30, 2024
1 parent 50b22d2 commit 396ed58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lesson_03/quiz/src/lesson3.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ describe('Lesson3Test', () => {
const questionPrompts = new Set(
quizQuestions.map((q) => q.getQuestionPrompt()),
);
expect(questionPrompts.size).toBe(2);
expect(questionPrompts.size).toBeGreaterThan(2);
}
});

Expand Down

0 comments on commit 396ed58

Please sign in to comment.