Skip to content

Commit

Permalink
Fix test data.
Browse files Browse the repository at this point in the history
  • Loading branch information
fniessink committed Oct 20, 2024
1 parent 6078f1d commit 1eb80d3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/toisto/model/quiz/test_quiz_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,8 @@ def test_grammatical_number_in_target_language_not_in_source_language(self):
self.create_quiz(plural, "de vervoersmiddelen", ["de vervoersmiddelen"], DICTATE),
self.create_quiz(plural, "de vervoersmiddelen", ["means of transportation"], READ),
self.create_quiz(plural, "de vervoersmiddelen", ["het vervoersmiddel"], SINGULAR),
self.create_quiz(concept, "means of transportation", ["means of transportation"], WRITE),
self.create_quiz(concept, "means of transportation", ["de vervoersmiddelen"], WRITE),
self.create_quiz(concept, "means of transportation", ["het vervoersmiddel"], WRITE),
},
quizzes,
)
Expand Down Expand Up @@ -1223,7 +1224,7 @@ def test_declarative_and_interrogative_moods(self):
self.create_quiz(interrogative, "Is de auto zwart?", ["Is de auto zwart?"], DICTATE),
self.create_quiz(interrogative, "Is de auto zwart?", ["Is the car black?"], INTERPRET),
self.create_quiz(interrogative, "Is the car black?", ["Is de auto zwart?"], WRITE),
self.create_quiz(concept, "De auto is zwart.", ["Is de auto zwart"], INTERROGATIVE),
self.create_quiz(concept, "De auto is zwart.", ["Is de auto zwart?"], INTERROGATIVE),
self.create_quiz(concept, "Is de auto zwart?", ["De auto is zwart."], DECLARATIVE),
},
create_quizzes(NL_EN, concept),
Expand Down Expand Up @@ -1274,7 +1275,7 @@ def test_declarative_interrogative_and_imperative_moods(self):
self.create_quiz(declarative, "Jij rent.", ["Jij rent."], DICTATE),
self.create_quiz(declarative, "Jij rent.", ["You run."], INTERPRET),
self.create_quiz(declarative, "You run.", ["Jij rent."], WRITE),
self.create_quiz(interrogative, "Ren jij?", ["Ren jij?"], READ),
self.create_quiz(interrogative, "Ren jij?", ["Do you run?"], READ),
self.create_quiz(interrogative, "Ren jij?", ["Ren jij?"], DICTATE),
self.create_quiz(interrogative, "Ren jij?", ["Do you run?"], INTERPRET),
self.create_quiz(interrogative, "Do you run?", ["Ren jij?"], WRITE),
Expand Down Expand Up @@ -1311,7 +1312,7 @@ def test_affirmative_and_negative_polarities(self):
{
self.create_quiz(affirmative, "De auto is zwart.", ["The car is black."], READ),
self.create_quiz(affirmative, "De auto is zwart.", ["De auto is zwart."], DICTATE),
self.create_quiz(affirmative, "De auto is zwart.", ["The cat is black."], INTERPRET),
self.create_quiz(affirmative, "De auto is zwart.", ["The car is black."], INTERPRET),
self.create_quiz(affirmative, "The car is black.", ["De auto is zwart."], WRITE),
self.create_quiz(negative, "De auto is niet zwart.", ["The car is not black."], READ),
self.create_quiz(negative, "De auto is niet zwart.", ["De auto is niet zwart."], DICTATE),
Expand Down

0 comments on commit 1eb80d3

Please sign in to comment.