@@ -110,7 +110,7 @@ def test_log_to_file(mock_print, mocked_file):
110
110
111
111
utils .log_to_file (category , rank , data )
112
112
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" )
114
114
mock_print .assert_called_once_with (expected_output , file = mocked_file (), flush = True )
115
115
116
116
@@ -122,7 +122,7 @@ def test_log_infection(mock_print, mock_open):
122
122
utils .log_infection (1 , 2 , 3 , 4 , 5 , 6 )
123
123
124
124
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"
126
126
)
127
127
mock_print .assert_called_once_with (
128
128
"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):
137
137
utils .log_hospitalisation (1 , 2 , 3 , 4 , 5 )
138
138
139
139
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"
141
141
)
142
142
mock_print .assert_called_once_with (
143
143
"1,2,3,4" , file = mock_open .return_value , flush = True
@@ -151,7 +151,7 @@ def test_log_death(mock_print, mock_open):
151
151
152
152
utils .log_death (1 , 2 , 3 , 4 , 5 )
153
153
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" )
155
155
mock_print .assert_called_once_with (
156
156
"1,2,3,4" , file = mock_open .return_value , flush = True
157
157
)
@@ -165,7 +165,7 @@ def test_log_recovery(mock_print, mock_open):
165
165
utils .log_recovery (1 , 2 , 3 , 4 , 5 )
166
166
167
167
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"
169
169
)
170
170
mock_print .assert_called_once_with (
171
171
"1,2,3,4" , file = mock_open .return_value , flush = True
@@ -216,10 +216,10 @@ def test_write_headers(mock_print, mock_file):
216
216
"#time,x,y,age" ,
217
217
]
218
218
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" ,
223
223
]
224
224
225
225
assert mock_file .call_count == 4
0 commit comments