mirror of
https://github.com/django/django.git
synced 2025-06-05 11:39:13 +00:00
Refs #32355 -- Removed unnecessary getattr() call.
options.test_name_patterns is always defined. Follow up to ec0ff406311de88f4e2a135d784363424fe602aa.
This commit is contained in:
parent
4c4536f744
commit
c74a6fad54
@ -790,7 +790,7 @@ if __name__ == "__main__":
|
|||||||
options.parallel,
|
options.parallel,
|
||||||
options.tags,
|
options.tags,
|
||||||
options.exclude_tags,
|
options.exclude_tags,
|
||||||
getattr(options, "test_name_patterns", None),
|
options.test_name_patterns,
|
||||||
options.start_at,
|
options.start_at,
|
||||||
options.start_after,
|
options.start_after,
|
||||||
options.pdb,
|
options.pdb,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user