Skip to content

Commit 1705347

Browse files
committed
testing work
1 parent 98d1dd5 commit 1705347

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lesson_03/quiz/src/quizzes/pablo_limon_paredes_quiz.ts

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

88
export class PabloLimonParedesQuiz implements QuizQuestionProvider {
99
getProviderName(): string {
10-
return 'pablolimonparedes';
10+
return 'PabloLimonParedes';
1111
}
1212

1313
makeQuizQuestions(): QuizQuestion[] {
@@ -21,28 +21,28 @@ export class PabloLimonParedesQuiz implements QuizQuestionProvider {
2121
private static makeQuestion0(): QuizQuestion {
2222
return new MultipleChoiceQuizQuestion(
2323
0,
24-
'What does "git checkout -b branch" command do?',
24+
'What does git checkout -b branch command do?',
2525
new Map<AnswerChoice, string>([
2626
[AnswerChoice.A, 'Creates a pull request'],
2727
[AnswerChoice.B, 'Creates a new branch and switches you to it'],
2828
[AnswerChoice.C, 'To move to another branch'],
2929
[AnswerChoice.D, 'Delete a branch'],
3030
]),
31-
AnswerChoice.UNANSWERED,
31+
AnswerChoice.B,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434

3535
private static makeQuestion1(): QuizQuestion {
3636
return new MultipleChoiceQuizQuestion(
3737
1,
38-
'What does the "man git" command do?',
38+
'What does the man git command do?',
3939
new Map<AnswerChoice, string>([
4040
[AnswerChoice.A, 'Create a new directory'],
4141
[AnswerChoice.B, 'Shows history of commands'],
4242
[AnswerChoice.C, 'Get to main branch'],
4343
[AnswerChoice.D, 'Access the manual for git'],
4444
]),
45-
AnswerChoice.UNANSWERED,
45+
AnswerChoice.D,
4646
); // Replace `UNANSWERED` with the correct answer.
4747
}
4848
private static makeQuestion2(): QuizQuestion {
@@ -55,7 +55,7 @@ export class PabloLimonParedesQuiz implements QuizQuestionProvider {
5555
[AnswerChoice.C, 'command + shift + P'],
5656
[AnswerChoice.D, 'command + T'],
5757
]),
58-
AnswerChoice.UNANSWERED,
58+
AnswerChoice.A,
5959
); // Replace `UNANSWERED` with the correct answer.
6060
}
6161
}

0 commit comments

Comments
 (0)