Skip to content
Snippets Groups Projects
Commit ce07e6e9 authored by lukas leufen's avatar lukas leufen
Browse files

another misspelling in test methods

parent 3fbd3010
No related branches found
No related tags found
2 merge requests!59Develop,!46Felix #56 advanced paddings
Pipeline #31082 passed
......@@ -101,7 +101,7 @@ class TestPadUtils:
assert PadUtils.check_padding_format((1, 2)) == ((1, 1), (2, 2))
assert PadUtils.check_padding_format(1) == ((1, 1), (1, 1))
def test_check_padding_format_tupe_of_none_integer(self):
def test_check_padding_format_tuple_of_none_integer(self):
with pytest.raises(ValueError) as einfo:
PadUtils.check_padding_format((1.2, 1))
assert "The `1st entry of padding` argument must be a tuple of 2 integers. Received: 1.2" in str(einfo.value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment