mirror of
https://github.com/Hopiu/django.git
synced 2026-04-20 06:51:07 +00:00
Refs #32355 -- Removed unnecessary getattr() call.
options.test_name_patterns is always defined.
Follow up to ec0ff40631.
This commit is contained in:
parent
4c4536f744
commit
c74a6fad54
1 changed files with 1 additions and 1 deletions
|
|
@ -790,7 +790,7 @@ if __name__ == "__main__":
|
|||
options.parallel,
|
||||
options.tags,
|
||||
options.exclude_tags,
|
||||
getattr(options, "test_name_patterns", None),
|
||||
options.test_name_patterns,
|
||||
options.start_at,
|
||||
options.start_after,
|
||||
options.pdb,
|
||||
|
|
|
|||
Loading…
Reference in a new issue