diff options
author | William Deegan <bill@baddogconsulting.com> | 2025-02-15 21:25:29 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2025-02-15 21:25:29 (GMT) |
commit | a5fcde6a9f37e7879551f4abf2f882ddaeb29835 (patch) | |
tree | 8befc3d89005e1df6e3439efc3d9b699f59967f6 | |
parent | 2a9d19ac69c29b8cb5aeecd2657d4c4cdf4f2989 (diff) | |
download | SCons-a5fcde6a9f37e7879551f4abf2f882ddaeb29835.zip SCons-a5fcde6a9f37e7879551f4abf2f882ddaeb29835.tar.gz SCons-a5fcde6a9f37e7879551f4abf2f882ddaeb29835.tar.bz2 |
Simplify use of dir_fixture
-rw-r--r-- | test/Configure/CheckLibWithHeader_extra_libs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Configure/CheckLibWithHeader_extra_libs.py b/test/Configure/CheckLibWithHeader_extra_libs.py index 037bd86..9e95fe8 100644 --- a/test/Configure/CheckLibWithHeader_extra_libs.py +++ b/test/Configure/CheckLibWithHeader_extra_libs.py @@ -33,7 +33,7 @@ from pathlib import Path from TestSCons import TestSCons, dll_, _dll test = TestSCons(match=TestSCons.match_re_dotall) -test.dir_fixture(['fixture', 'checklib_extra'],) +test.dir_fixture(['fixture', 'checklib_extra']) libA = f"libA/{dll_}A{_dll}" libB = f"libB/{dll_}B{_dll}" |