aboutsummaryrefslogtreecommitdiff
path: root/tools/patman/test_util.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-29 14:14:05 -0700
committerSimon Glass <sjg@chromium.org>2022-02-09 12:26:12 -0700
commitd98006997c342435f906317758292fe97c520b47 (patch)
treef2ce4ee3b9e37f5a1b0b1f6ec09056a2d68c9437 /tools/patman/test_util.py
parentc1aa66e75dbfcacab1fbca0e3e19c09e08d932d5 (diff)
patman: Convert camel case in command.py
Convert this file to snake case and update all files which use it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/test_util.py')
-rw-r--r--tools/patman/test_util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/test_util.py b/tools/patman/test_util.py
index 9654e7319c..c3f15f8a4b 100644
--- a/tools/patman/test_util.py
+++ b/tools/patman/test_util.py
@@ -61,7 +61,7 @@ def RunTestCoverage(prog, filter_fname, exclude_list, build_dir, required=None,
'--omit "%s" %s %s %s -P1' % (prefix, ','.join(glob_list),
prog, extra_args or '', test_cmd))
os.system(cmd)
- stdout = command.Output('python3-coverage', 'report')
+ stdout = command.output('python3-coverage', 'report')
lines = stdout.splitlines()
if required:
# Convert '/path/to/name.py' just the module name 'name'