Skip to content

Commit 9f5645e

Browse files
committed
Fix doc/desc of markers
1 parent 5680f1e commit 9f5645e

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
@@ -175,13 +175,13 @@ def pytest_load_initial_conftests(early_config, parser, args):
175175
early_config.addinivalue_line(
176176
'markers',
177177
'django_db(transaction=False): Mark the test as using '
178-
'the django test database. The *transaction* argument marks will '
179-
"allow you to use real transactions in the test like Django's "
178+
'the Django test database. The *transaction* argument '
179+
"allows you to use real transactions in the test like with Django's "
180180
'TransactionTestCase.')
181181
early_config.addinivalue_line(
182182
'markers',
183183
'urls(modstr): Use a different URLconf for this test, similar to '
184-
'the `urls` attribute of Django `TestCase` objects. *modstr* is '
184+
"the `urls` attribute of Django's `TestCase` objects. *modstr* is "
185185
'a string specifying the module of a URL config, e.g. '
186186
'"my_app.test_urls".')
187187

0 commit comments

Comments
 (0)