From 36f144d379d24d4749ee89bf023ba55dc88cccae Mon Sep 17 00:00:00 2001 From: Jan Range Date: Mon, 11 Nov 2024 16:30:18 +0100 Subject: [PATCH] remove var assignment --- tests/unit/test_connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_connect.py b/tests/unit/test_connect.py index 75840f5..8331900 100644 --- a/tests/unit/test_connect.py +++ b/tests/unit/test_connect.py @@ -102,7 +102,7 @@ def test_empty_attribute_name_returns_empty_string(self): # Act with pytest.raises(ValueError): - processed_name = process_name(attr_name, common_part) + process_name(attr_name, common_part) # Empty common part returns processed attribute name without common part. @pytest.mark.unit