Skip to content

Commit

Permalink
Remove pytest-lazy-fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Feb 2, 2024
1 parent c0288fc commit acc0e2d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/api/test_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def test_default_config_format(self, cluster: CeleryBackendCluster, request):

class test_disabling_cluster:
@pytest.fixture
def celery_backend_cluster(self) -> CeleryBackendCluster:
def celery_backend_cluster(self, cluster: CeleryBackendCluster, request) -> CeleryBackendCluster:
cluster = request.getfixturevalue(cluster)
return None

def test_disabling_backend_cluster(
Expand Down

0 comments on commit acc0e2d

Please sign in to comment.