From b1bf4d5a3a40c726e3ff834153fb813ddfa83d2a Mon Sep 17 00:00:00 2001 From: siddart1 Date: Mon, 3 Feb 2025 21:20:39 -0800 Subject: [PATCH] fix: refactorting tests --- tests/shellsort_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/shellsort_test.py b/tests/shellsort_test.py index 711ef27..1ec4745 100644 --- a/tests/shellsort_test.py +++ b/tests/shellsort_test.py @@ -2,7 +2,7 @@ import pytest from pysorting import shell_sort, InvalidElementTypeError, NonUniformTypeError, InvalidAscendingTypeError -# Define test cases as fixtures +# Define test cases as fixtures-- @pytest.fixture(params=[ [], # empty array [1], # single-element array