diff options
Diffstat (limited to 'src/engine/SCons/Variables/PathVariableTests.py')
| -rw-r--r-- | src/engine/SCons/Variables/PathVariableTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/Variables/PathVariableTests.py b/src/engine/SCons/Variables/PathVariableTests.py index 4e6436e..1643252 100644 --- a/src/engine/SCons/Variables/PathVariableTests.py +++ b/src/engine/SCons/Variables/PathVariableTests.py @@ -44,7 +44,7 @@ class PathVariableTestCase(unittest.TestCase): assert o.key == 'test', o.key assert o.help == 'test option help ( /path/to/test )', repr(o.help) assert o.default == '/default/path', o.default - assert not o.validator is None, o.validator + assert o.validator is not None, o.validator assert o.converter is None, o.converter def test_PathExists(self): |
