Skip to content

Commit 3d8ed48

Browse files
committed
Fix doc/desc of markers
1 parent c0986b3 commit 3d8ed48

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
@@ -150,13 +150,13 @@ def pytest_load_initial_conftests(early_config, parser, args):
150150
early_config.addinivalue_line(
151151
'markers',
152152
'django_db(transaction=False): Mark the test as using '
153-
'the django test database. The *transaction* argument marks will '
154-
"allow you to use real transactions in the test like Django's "
153+
'the Django test database. The *transaction* argument '
154+
"allows you to use real transactions in the test like with Django's "
155155
'TransactionTestCase.')
156156
early_config.addinivalue_line(
157157
'markers',
158158
'urls(modstr): Use a different URLconf for this test, similar to '
159-
'the `urls` attribute of Django `TestCase` objects. *modstr* is '
159+
"the `urls` attribute of Django's `TestCase` objects. *modstr* is "
160160
'a string specifying the module of a URL config, e.g. '
161161
'"my_app.test_urls".')
162162

0 commit comments

Comments
 (0)