diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-02-28 16:20:58 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2019-02-28 16:20:58 (GMT) |
commit | 910af82db286c12414b2abc252c484bcaaa9beb4 (patch) | |
tree | 5ccf8c0eb6f9f6cfbff1469815bbc3a4c297e563 /src/engine | |
parent | 043f3fe3c182730eca17d68030f1de34fa88477e (diff) | |
download | SCons-910af82db286c12414b2abc252c484bcaaa9beb4.zip SCons-910af82db286c12414b2abc252c484bcaaa9beb4.tar.gz SCons-910af82db286c12414b2abc252c484bcaaa9beb4.tar.bz2 |
Update SConf tests to add scan arg to mocked out Node children() method since this is now used by SConf's logic
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/SCons/SConfTests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/SCons/SConfTests.py b/src/engine/SCons/SConfTests.py index cf8a7fb..ff544f5 100644 --- a/src/engine/SCons/SConfTests.py +++ b/src/engine/SCons/SConfTests.py @@ -194,7 +194,7 @@ class SConfTestCase(unittest.TestCase): pass def add_post_action(self, *actions): pass - def children(self): + def children(self, scan = 1): return [] def get_state(self): return self.state |