Skip to content

Commit 4b1274c

Browse files
author
Lode Rosseel
committed
chore: format
1 parent 0fb5f38 commit 4b1274c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_fixtures.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,9 @@ def test_unblock_with_block(self, django_db_blocker: DjangoDbBlocker) -> None:
750750
with django_db_blocker.unblock():
751751
Item.objects.exists()
752752

753-
def test_unblock_with_both_flags_raises_valueerror(self, django_db_blocker: DjangoDbBlocker) -> None:
753+
def test_unblock_with_both_flags_raises_valueerror(
754+
self, django_db_blocker: DjangoDbBlocker
755+
) -> None:
754756
# When both sync_only and async_only are True, unblock should reject with ValueError
755757
with pytest.raises(ValueError, match="Cannot use both sync_only and async_only"):
756758
django_db_blocker.unblock(sync_only=True, async_only=True)

0 commit comments

Comments
 (0)