fix(slice): Fix using isdigit when id passed as int (#35452)

This commit is contained in:
Antonio Rivero
2025-10-02 16:04:54 +02:00
committed by GitHub
parent 5428376662
commit 449a89c214
2 changed files with 4 additions and 1 deletions

View File

@@ -78,6 +78,7 @@ class TestSlice:
("numeric_id", "123"),
("uuid_format", "550e8400-e29b-41d4-a716-446655440000"),
("invalid_string", "not-a-number"),
("integer_id", 123),
]
)
def test_id_or_uuid_filter(self, test_name, input_value):