Skip to content

Commit d42ab3b

Browse files
committed
Fix stray comma
1 parent 6f04c0c commit d42ab3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pytest_django/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,9 +265,9 @@ def pytest_load_initial_conftests(
265265
"django_db(transaction=False, reset_sequences=False): "
266266
"Mark the test as using the Django test database. "
267267
"The *transaction* argument allows you to use real transactions "
268-
"in the test like Django's TransactionTestCase. ",
268+
"in the test like Django's TransactionTestCase. "
269269
"The *reset_sequences* argument resets database sequences before "
270-
"the test."
270+
"the test.",
271271
)
272272
early_config.addinivalue_line(
273273
"markers",

0 commit comments

Comments
 (0)