diff --git a/test/test_model_modules/test_advanced_paddings.py b/test/test_model_modules/test_advanced_paddings.py index d7715917d68cbe55d2641c2c92cb65786de55ec2..5282eb6df34d4d395dbbdd1fd76fd71a95e9c8df 100644 --- a/test/test_model_modules/test_advanced_paddings.py +++ b/test/test_model_modules/test_advanced_paddings.py @@ -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)