Skip to content

Commit 8f9c95c

Browse files
author
jjcapparell
committed
edited test files to merge
1 parent 08c6b2c commit 8f9c95c

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

lesson_03/quiz/quiz.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ quiz:
99
jamescapparell:
1010
- $2y$10$iLvL/AaFPzcGZrcna7umMuHqkZe1f9at/ix77NUI6uakDGNuVKQCy
1111
- $2y$10$FLxmGXJLm5EziyhA5D33ju0kUjXhiDbuUdImciLQz8lBRu5ou0hee
12-
<<<<<<< HEAD
13-
- $2y$10$9bIwC0Or.LhwAZrNL5Dvn.vjyhDF79Iw5ukm3h/oKauRCYOGSIlSK
12+
- $2y$10$hQTJ1d2giJ40AI8rSgBqWOij7j3WVqsvAMYOLFiixbYTcvETuF5cC
1413
oyeyemijimoh:
1514
- $2y$10$2LlSxAEM1HmR3Wl2fO6LQueu/77spr5SuWAh4b3MKesIWNy3CFjGe
1615
- $2y$10$csA90DFxK7.uq6dSfS06Yukk5fQPrzLvU2Lp43ArTs2za28LVvRGO
@@ -23,7 +22,3 @@ quiz:
2322
- $2y$10$XcsVuO66KZiUiN75NtssdOkKvHKhuBo91JgE/TJEnSrrzbhjxuql.
2423
- $2y$10$9fZs867NHxoPQ/VWMeLyj.us5Kg3SLPcbt9O5ki/FdJ37TbhgFMFC
2524
- $2y$10$GfjcKvtzr6n8553Mdr1RJOOYDfzOudlW.3i8otsH0HiW52CU7tUAW
26-
27-
=======
28-
- $2y$10$hQTJ1d2giJ40AI8rSgBqWOij7j3WVqsvAMYOLFiixbYTcvETuF5cC
29-
>>>>>>> c159d83 (edited yaml file)

lesson_03/quiz/src/quizzes/james_capparell_quiz.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export class JamesCapparellQuiz implements QuizQuestionProvider {
2828
[AnswerChoice.C, 'New Castle County'],
2929
[AnswerChoice.D, 'Lancaster County'],
3030
]),
31-
AnswerChoice.C,
31+
AnswerChoice.UNANSWERED,
3232
); // Replace `UNANSWERED` with the correct answer.
3333
}
3434
private static makeQuestion1(): QuizQuestion {
@@ -41,15 +41,15 @@ export class JamesCapparellQuiz implements QuizQuestionProvider {
4141
[AnswerChoice.C, 'Mega Man'],
4242
[AnswerChoice.D, 'Pikachu'],
4343
]),
44-
AnswerChoice.A,
44+
AnswerChoice.UNANSWERED,
4545
); // Replace `UNANSWERED` with the correct answer.
4646
}
4747

4848
private static makeQuestion2(): QuizQuestion {
4949
return new QuizQuestion(
5050
2,
5151
'Type the full answer while filling in the blanks! A _____ that transforms ____ data into ____ data using automatically executed, pre-programmed ____.',
52-
'A computer is a machine that transforms input data to output data using automatically executed, pre-programmed instructions.',
52+
'A _____ that transforms ____ data into ____ data using automatically executed, pre-programmed ____.',
5353
); // Provide an answer.
5454
}
5555
}

lesson_03/quiz/src/quizzes/quizzes.module.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
import { Module } from '@nestjs/common';
22
import { AnotherQuiz } from './another_quiz.js';
3-
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js';
43
import { AnthonyMaysQuiz } from './anthony_mays_quiz.js';
54
import { JamesCapparellQuiz } from './james_capparell_quiz.js';
65
import { JosephCaballeroQuiz } from './joseph_caballero_quiz.js';
6+
import { OyeyemiJimohQuiz } from './oyeyemi_jimoh_quiz.js';
77
import { YafiahAbdullahQuiz } from './yafiah_abdullah_quiz.js';
88

9-
109
export const Quizzes = Symbol.for('Quizzes');
1110

1211
// Add your quiz provider here.
13-
const QUIZ_PROVIDERS = [AnthonyMaysQuiz, AnotherQuiz, JamesCapparellQuiz];
14-
1512
const QUIZ_PROVIDERS = [
1613
AnthonyMaysQuiz,
1714
YafiahAbdullahQuiz,
15+
JamesCapparellQuiz,
1816
AnotherQuiz,
1917
JosephCaballeroQuiz,
2018
OyeyemiJimohQuiz,

0 commit comments

Comments
 (0)