Skip to content

Commit

Permalink
* update error message
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Nov 21, 2023
1 parent f2bd06e commit 721adcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autotest/test_mfsimlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def test_mfsimlist_memory_summary(mem_option, function_tmpdir):

if mem_option is None:
mem_dict = mfsimlst.get_memory_summary()
assert mem_dict is None, "Expected that None to be returned"
assert mem_dict is None, "Expected None to be returned"
else:
for units in MEMORY_UNITS:
mem_dict = mfsimlst.get_memory_summary(units=units)
Expand All @@ -153,7 +153,7 @@ def test_mfsimlist_memory_all(mem_option, function_tmpdir):

if mem_option is None:
mem_dict = mfsimlst.get_memory_all()
assert mem_dict is None, "Expected that None to be returned"
assert mem_dict is None, "Expected None to be returned"
else:
for units in MEMORY_UNITS:
mem_dict = mfsimlst.get_memory_all(units=units)
Expand Down

0 comments on commit 721adcd

Please sign in to comment.