Skip to content

Commit fd452d2

Browse files
committed
Correcting tests
1 parent c520cee commit fd452d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

in2lambda/api/module.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ def to_json(self, output_dir: str) -> None:
113113
... # Check the contents of the directory
114114
... sorted(os.listdir(temp_dir))
115115
... # Check the title of the first question
116-
... with open(f"{temp_dir}/Question 1/Question 1.json") as file:
116+
... with open(f"{temp_dir}/question_1/question_1.json") as file:
117117
... print(f"Question 1's title: {json.load(file)['title']}")
118-
['Question 1', 'Question 1.zip', 'Question 2', 'Question 2.zip']
118+
['Question 1', 'question_1.zip', 'Question 2', 'question_2.zip']
119119
Question 1's title: Question 1
120120
121121
"""

0 commit comments

Comments
 (0)