From ce07e6e9ded1648457a1173740828660737b9e12 Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Wed, 4 Mar 2020 13:53:19 +0100 Subject: [PATCH] another misspelling in test methods --- test/test_model_modules/test_advanced_paddings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_model_modules/test_advanced_paddings.py b/test/test_model_modules/test_advanced_paddings.py index d7715917..5282eb6d 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) -- GitLab