2022-05-23 00:16:32 +04:00

8 lines
166 B
Python

import pytest
@pytest.fixture(params=[True, False])
def allow_fill(request):
"""Boolean 'allow_fill' parameter for Categorical.take"""
return request.param