Skip to content

Commit

Permalink
Correct missing name kwarg in test_filled_decreasing_levels (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Dec 26, 2022
1 parent 9700563 commit 3c4a137
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_filled.py
Expand Up @@ -29,7 +29,7 @@ def xyz_chunk_test():

@pytest.mark.parametrize("name", util_test.all_names())
def test_filled_decreasing_levels(name):
cont_gen = contour_generator(z=[[0, 1], [2, 3]], fill_type=FillType.OuterCode)
cont_gen = contour_generator(z=[[0, 1], [2, 3]], name=name, fill_type=FillType.OuterCode)
with pytest.raises(ValueError, match="upper and lower levels are the wrong way round"):
cont_gen.filled(2.0, 1.0)

Expand Down

0 comments on commit 3c4a137

Please sign in to comment.