mirror of https://github.com/django/django.git
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
|
@ -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 New Issue