Skip to content

Commit 64e291a

Browse files
committed
committing changes to Dylan_Lafferty_quiz.ts
1 parent 62cbd19 commit 64e291a

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

lesson_03/quiz/src/quizzes/Dylan_Lafferty_quiz.ts

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
1-
21
import {
3-
42
AnswerChoice,
53
MultipleChoiceQuizQuestion,
64
QuizQuestion,
75
QuizQuestionProvider,
86
} from 'codedifferently-instructional';
97

10-
118
export class DylanLaffertyQuiz implements QuizQuestionProvider {
129
getProviderName(): string {
1310
return 'dylanlafferty';
1411
}
1512

1613
makeQuizQuestions(): QuizQuestion[] {
17-
1814
return [
1915
DylanLaffertyQuiz.makeQuestion0(),
2016
DylanLaffertyQuiz.makeQuestion1(),
2117
DylanLaffertyQuiz.makeQuestion2(),
2218
];
2319

24-
return [DylanLaffertyQuiz.makeQuestion0(), DylanLaffertyQuiz.makeQuestion0()];
20+
return [
21+
DylanLaffertyQuiz.makeQuestion0(),
22+
DylanLaffertyQuiz.makeQuestion0(),
23+
];
2524
}
2625

2726
private static makeQuestion0(): QuizQuestion {
@@ -60,8 +59,8 @@ export class DylanLaffertyQuiz implements QuizQuestionProvider {
6059
[AnswerChoice.B, 'SSD'],
6160
[AnswerChoice.C, 'GPU'],
6261
[AnswerChoice.D, 'RAM'],
62+
]),
6363
AnswerChoice.UNANSWERED,
6464
);
6565
}
6666
}
67-

0 commit comments

Comments
 (0)