diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-10-12 01:32:57 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-10-12 01:32:57 (GMT) |
commit | c05da53b5da73768c8026fc0b3ae3c79e2d0f8cb (patch) | |
tree | ea084d62b99e908dcea33ca8dccaecb2b2ffc551 /test/Variables | |
parent | 4f7b5abd7c9fe05a6f894005fdd3586c87d02462 (diff) | |
download | SCons-c05da53b5da73768c8026fc0b3ae3c79e2d0f8cb.zip SCons-c05da53b5da73768c8026fc0b3ae3c79e2d0f8cb.tar.gz SCons-c05da53b5da73768c8026fc0b3ae3c79e2d0f8cb.tar.bz2 |
Fix tests where the GenerateHelpText() sort function was never correct and fixing the logic broke the test because of that
Diffstat (limited to 'test/Variables')
-rw-r--r-- | test/Variables/Variables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Variables/Variables.py b/test/Variables/Variables.py index 17b33af..0fe3745 100644 --- a/test/Variables/Variables.py +++ b/test/Variables/Variables.py @@ -320,8 +320,8 @@ opts.Add('UNSPECIFIED', env = Environment(variables=opts) -def compare(a,b): - return a < b +def compare(a, b): + return (a > b) - (a < b) Help('Variables settable in custom.py or on the command line:\\n' + opts.GenerateHelpText(env,sort=compare)) |