Skip to content

Commit d74da43

Browse files
committed
commited the changes requested by anthony
1 parent ad7e866 commit d74da43

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ quiz:
1818
- $2y$10$FquR69q7W4E68TX/SNCB7u8Ri0DOFRDqsUPdGfuyIBjZJRVFkNI.6
1919
- $2y$10$FSWRA7hulVpyVxd8s67Nxuq/1cdmviW24qqoUbqihBf79cR.w9yly
2020
- $2y$10$Qy1IsNsfuJvA384ypL/72uWubUuNbMRp4LD6j/LM0RIH66D/HIjF6
21-
Justin:
21+
justin:
2222
- $2y$10$oLpmVAdqLqak5GfBAzXOluiPY1mVWjGz04DJSvvTKxYXxEcUCTOEW
2323
- $2y$10$Qn8i04ef5sviCn0RvkUeOOPlhrMb4A6QOjY4dbh/kBKhq7tIMmpqO
2424
- $2y$10$N7ggPSg7MJFmiLKwZA.Zqe2iEGxmo7uJtxAmM3Mj30hhCw6pDWEky

lesson_03/quiz/src/quizzes/justin_eklund_quiz.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {
77

88
export class JustinsQuiz implements QuizQuestionProvider {
99
getProviderName(): string {
10-
return 'Justin';
10+
return 'justin';
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
@@ -28,7 +28,7 @@ export class JustinsQuiz implements QuizQuestionProvider {
2828
[AnswerChoice.C, '12'],
2929
[AnswerChoice.D, '10'],
3030
]),
31-
AnswerChoice.A,
31+
AnswerChoice.UNANSWERED,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434

@@ -42,7 +42,7 @@ export class JustinsQuiz implements QuizQuestionProvider {
4242
[AnswerChoice.C, '48'],
4343
[AnswerChoice.D, '50'],
4444
]),
45-
AnswerChoice.D,
45+
AnswerChoice.UNANSWERED,
4646
); // Replace `UNANSWERED` with the correct answer.
4747
}
4848
private static makeQuestion2(): QuizQuestion {
@@ -55,7 +55,7 @@ export class JustinsQuiz implements QuizQuestionProvider {
5555
[AnswerChoice.C, 'December 26th'],
5656
[AnswerChoice.D, 'December 23rd'],
5757
]),
58-
AnswerChoice.A,
58+
AnswerChoice.UNANSWERED,
5959
); // Replace `UNANSWERED` with the correct answer.
6060
}
6161
}

0 commit comments

Comments
 (0)