Refs #32355 -- Removed unnecessary getattr() call.

options.test_name_patterns is always defined.

Follow up to ec0ff40631.
This commit is contained in:
Mariusz Felisiak 2023-08-31 10:27:32 +02:00 committed by GitHub
parent 4c4536f744
commit c74a6fad54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,