Skip to content

Commit 0b64a7d

Browse files
committed
Fix doc/desc of markers
1 parent 777f676 commit 0b64a7d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pytest_django/plugin.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,13 +173,13 @@ def pytest_load_initial_conftests(early_config, parser, args):
173173
early_config.addinivalue_line(
174174
'markers',
175175
'django_db(transaction=False): Mark the test as using '
176-
'the django test database. The *transaction* argument marks will '
177-
"allow you to use real transactions in the test like Django's "
176+
'the Django test database. The *transaction* argument '
177+
"allows you to use real transactions in the test like with Django's "
178178
'TransactionTestCase.')
179179
early_config.addinivalue_line(
180180
'markers',
181181
'urls(modstr): Use a different URLconf for this test, similar to '
182-
'the `urls` attribute of Django `TestCase` objects. *modstr* is '
182+
"the `urls` attribute of Django's `TestCase` objects. *modstr* is "
183183
'a string specifying the module of a URL config, e.g. '
184184
'"my_app.test_urls".')
185185

0 commit comments

Comments
 (0)