Skip to content

Commit 6e2600a

Browse files
committed
fix: changed answer choice to UNANSWERED
1 parent e1172a8 commit 6e2600a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lesson_03/quiz/src/quizzes/evan_philakhong_quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class EvanPhilakhongQuiz implements QuizQuestionProvider {
2828
[AnswerChoice.C, 'Central Processing Unit'],
2929
[AnswerChoice.D, 'Coding Processor Unit'],
3030
]),
31-
AnswerChoice.C, // replace UNANSWERED with correct answer
31+
AnswerChoice.UNANSWERED, // replace UNANSWERED with correct answer
3232
);
3333
}
3434

@@ -42,7 +42,7 @@ export class EvanPhilakhongQuiz implements QuizQuestionProvider {
4242
[AnswerChoice.C, 'Graphical Programming Unit'],
4343
[AnswerChoice.D, 'Gaming Processor Unit'],
4444
]),
45-
AnswerChoice.A, // replace UNANSWERED with correct answer
45+
AnswerChoice.UNANSWERED, // replace UNANSWERED with correct answer
4646
);
4747
}
4848

@@ -56,7 +56,7 @@ export class EvanPhilakhongQuiz implements QuizQuestionProvider {
5656
[AnswerChoice.C, 'Power Supplier Unit'],
5757
[AnswerChoice.D, 'Power Storing Unit'],
5858
]),
59-
AnswerChoice.B, // repleace UNANSWERED with correct answer
59+
AnswerChoice.UNANSWERED, // repleace UNANSWERED with correct answer
6060
);
6161
}
6262
}

0 commit comments

Comments
 (0)