Skip to content

Commit 4920d13

Browse files
committed
Remove duplicate conservation tests
1 parent 705d049 commit 4920d13

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/test_app.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,6 @@ def test_model_raw_start():
293293
first = raw_df.iloc[0, :]
294294
second = raw_df.iloc[1, :]
295295

296-
assert first.susceptible + first.infected + first.recovered == param.population
297296
assert first.susceptible == 499600.0
298297
assert round(second.infected, 0) == 449.0
299298
assert list(model.dispositions_df.iloc[0, :]) == [-43, date(year=2020, month=2, day=15), 1.0, 0.4, 0.2]
@@ -327,7 +326,6 @@ def test_model_raw_end():
327326
raw_df = model.raw_df
328327

329328
last = raw_df.iloc[-1, :]
330-
assert last.susceptible + last.infected + last.recovered == param.population
331329
assert round(last.susceptible, 0) == 83391.0
332330

333331

0 commit comments

Comments
 (0)