@@ -28,7 +28,7 @@ export class HummadTanweerQuiz implements QuizQuestionProvider {
28
28
[ AnswerChoice . C , 'Koska Kawaguchi' ] ,
29
29
[ AnswerChoice . D , 'Junio C. Hamano' ] ,
30
30
] ) ,
31
- AnswerChoice . A ,
31
+ AnswerChoice . UNANSWERED ,
32
32
) ; // Replace `UNANSWERED` with the correct answer.
33
33
}
34
34
@@ -39,13 +39,10 @@ export class HummadTanweerQuiz implements QuizQuestionProvider {
39
39
new Map < AnswerChoice , string > ( [
40
40
[ AnswerChoice . A , 'GIT add' ] ,
41
41
[ AnswerChoice . B , 'GIT push' ] ,
42
- [
43
- AnswerChoice . C ,
44
- 'GIT upload' ,
45
- ] ,
42
+ [ AnswerChoice . C , 'GIT upload' ] ,
46
43
[ AnswerChoice . D , 'GIT status' ] ,
47
44
] ) ,
48
- AnswerChoice . B ,
45
+ AnswerChoice . UNANSWERED ,
49
46
) ; // Replace `UNANSWERED` with the correct answer.
50
47
}
51
48
@@ -56,13 +53,10 @@ export class HummadTanweerQuiz implements QuizQuestionProvider {
56
53
new Map < AnswerChoice , string > ( [
57
54
[ AnswerChoice . A , 'GIT diff' ] ,
58
55
[ AnswerChoice . B , 'GIT commit' ] ,
59
- [
60
- AnswerChoice . C ,
61
- 'GIT status' ,
62
- ] ,
56
+ [ AnswerChoice . C , 'GIT status' ] ,
63
57
[ AnswerChoice . D , 'GIT check' ] ,
64
58
] ) ,
65
- AnswerChoice . C ,
59
+ AnswerChoice . UNANSWERED ,
66
60
) ; // Replace `UNANSWERED` with the correct answer.
67
61
}
68
62
}
0 commit comments