diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2023-08-31 10:27:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-31 10:27:32 +0200 |
| commit | c74a6fad5475495756a5bdb18b2cab2b68d429bc (patch) | |
| tree | 069c2295076c482afadfe6351da5ae02be8e18e6 | |
| parent | 4c4536f7442a3ed1218f5b1dc791295d65c24f4c (diff) | |
Refs #32355 -- Removed unnecessary getattr() call.
options.test_name_patterns is always defined.
Follow up to ec0ff406311de88f4e2a135d784363424fe602aa.
| -rwxr-xr-x | tests/runtests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.py b/tests/runtests.py index 543344854c..2ea27b88c2 100755 --- a/tests/runtests.py +++ b/tests/runtests.py @@ -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, |
