Skip to content

Commit 720429e

Browse files
committed
chore: restores UNANSWERED responses
Signed-off-by: Anthony D. Mays <[email protected]>
1 parent d5d2f64 commit 720429e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lesson_03/quiz/src/quizzes/ bryana_singleton-barnhart_quiz.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class Bryanasingletonbarnhart implements QuizQuestionProvider {
2828
[AnswerChoice.C, 'CPU'],
2929
[AnswerChoice.D, 'Motherboard'],
3030
]),
31-
AnswerChoice.C,
31+
AnswerChoice.UNANSWERED,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434

@@ -42,7 +42,7 @@ export class Bryanasingletonbarnhart implements QuizQuestionProvider {
4242
[AnswerChoice.C, 'System Design Document'],
4343
[AnswerChoice.D, 'Software Development Document'],
4444
]),
45-
AnswerChoice.B,
45+
AnswerChoice.UNANSWERED,
4646
); // Replace `UNANSWERED` with the correct answer.
4747
}
4848
private static makeQuestion2(): QuizQuestion {
@@ -55,7 +55,7 @@ export class Bryanasingletonbarnhart implements QuizQuestionProvider {
5555
[AnswerChoice.C, '1000'],
5656
[AnswerChoice.D, '8'],
5757
]),
58-
AnswerChoice.D,
58+
AnswerChoice.UNANSWERED,
5959
); // Replace `UNANSWERED` with the correct answer.
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)