diff options
Diffstat (limited to 'test/option/debug-memory.py')
-rw-r--r-- | test/option/debug-memory.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/option/debug-memory.py b/test/option/debug-memory.py index 31ae346..2958e0b 100644 --- a/test/option/debug-memory.py +++ b/test/option/debug-memory.py @@ -30,10 +30,11 @@ Test that the --debug=memory option works. import re import TestSCons +from TestCmd import IS_WINDOWS test = TestSCons.TestSCons() -if not test.IS_WINDOWS: +if not IS_WINDOWS: try: import resource # noqa: F401 except ImportError: |