Update tests/test_utils_argfwd.py
Run CI Tests / test (push) Successful in 53s

This commit is contained in:
2025-08-03 13:14:53 +02:00
parent 2d09016f40
commit 02c6313b6c
+4 -1
View File
@@ -1,7 +1,10 @@
import inspect
import pytest
import sys
import os
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
from slic.utils.argfwd import *
@pytest.mark.parametrize("lst, index, expected", [
(['a', 'b', 'c', 'd'], 2, (['a', 'b'], ['c', 'd'])),