diff options
author | Simon Glass <sjg@chromium.org> | 2023-07-19 17:48:31 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2023-07-24 09:34:10 -0600 |
commit | b8be2bd83194222006d2f41bb107790d88fb987b (patch) | |
tree | dbdd609a879ee80ff5c01fe55c8d26e934cb881a /tools/buildman/func_test.py | |
parent | 9ef05b950e47f4ca44bda7f0161180068ede0334 (diff) |
buildman: Fix most pylint warnings in control
Tidy up the easier-to-fix pylint warnings in module 'control'.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/func_test.py')
-rw-r--r-- | tools/buildman/func_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/func_test.py b/tools/buildman/func_test.py index 57d2ebce3a..85222b9f9b 100644 --- a/tools/buildman/func_test.py +++ b/tools/buildman/func_test.py @@ -260,7 +260,7 @@ class TestFunctional(unittest.TestCase): make_func=self._HandleMake, brds=brds, clean_dir=clean_dir, test_thread_exceptions=test_thread_exceptions) if get_builder: - self._builder = control.builder + self._builder = control.TEST_BUILDER return result def testFullHelp(self): |