Skip to content

Commit 3adad8e

Browse files
committed
Fixes pytest issue for Measles support.
1 parent 5154366 commit 3adad8e

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

tests/test_disease.py

-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ def test_disease_initialization(disease: Disease):
3434
"recovery_period=15.0, mortality_period=20.0, "
3535
"period_to_hospitalisation=25.0, immunity_duration=30.0, immunity_fraction=0.5)"
3636
)
37-
38-
#assert repr(disease) == expected_repr, f"Expected: {expected_repr}, Got: {repr(disease)}"
3937

4038

4139
def test_add_hospitalisation_chances(disease: Disease):

tests/test_utils.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def test_log_to_file(mock_print, mocked_file):
110110

111111
utils.log_to_file(category, rank, data)
112112

113-
mocked_file.assert_called_once_with(f"./covid_out_{category}_{rank}.csv")
113+
mocked_file.assert_called_once_with(f"./out_{category}_{rank}.csv")
114114
mock_print.assert_called_once_with(expected_output, file=mocked_file(), flush=True)
115115

116116

@@ -122,7 +122,7 @@ def test_log_infection(mock_print, mock_open):
122122
utils.log_infection(1, 2, 3, 4, 5, 6)
123123

124124
mock_open.assert_called_once_with(
125-
"./covid_out_infections_5.csv", "a", encoding="utf-8"
125+
"./out_infections_5.csv", "a", encoding="utf-8"
126126
)
127127
mock_print.assert_called_once_with(
128128
"1,2,3,4,5,6", file=mock_open.return_value, flush=True
@@ -137,7 +137,7 @@ def test_log_hospitalisation(mock_print, mock_open):
137137
utils.log_hospitalisation(1, 2, 3, 4, 5)
138138

139139
mock_open.assert_called_once_with(
140-
"./covid_out_hospitalisations_5.csv", "a", encoding="utf-8"
140+
"./out_hospitalisations_5.csv", "a", encoding="utf-8"
141141
)
142142
mock_print.assert_called_once_with(
143143
"1,2,3,4", file=mock_open.return_value, flush=True
@@ -151,7 +151,7 @@ def test_log_death(mock_print, mock_open):
151151

152152
utils.log_death(1, 2, 3, 4, 5)
153153

154-
mock_open.assert_called_once_with("./covid_out_deaths_5.csv", "a", encoding="utf-8")
154+
mock_open.assert_called_once_with("./out_deaths_5.csv", "a", encoding="utf-8")
155155
mock_print.assert_called_once_with(
156156
"1,2,3,4", file=mock_open.return_value, flush=True
157157
)
@@ -165,7 +165,7 @@ def test_log_recovery(mock_print, mock_open):
165165
utils.log_recovery(1, 2, 3, 4, 5)
166166

167167
mock_open.assert_called_once_with(
168-
"./covid_out_recoveries_5.csv", "a", encoding="utf-8"
168+
"./out_recoveries_5.csv", "a", encoding="utf-8"
169169
)
170170
mock_print.assert_called_once_with(
171171
"1,2,3,4", file=mock_open.return_value, flush=True
@@ -216,10 +216,10 @@ def test_write_headers(mock_print, mock_file):
216216
"#time,x,y,age",
217217
]
218218
file_names = [
219-
"./covid_out_infections_1.csv",
220-
"./covid_out_hospitalisations_1.csv",
221-
"./covid_out_deaths_1.csv",
222-
"./covid_out_recoveries_1.csv",
219+
"./out_infections_1.csv",
220+
"./out_hospitalisations_1.csv",
221+
"./out_deaths_1.csv",
222+
"./out_recoveries_1.csv",
223223
]
224224

225225
assert mock_file.call_count == 4

0 commit comments

Comments
 (0)