aboutsummaryrefslogtreecommitdiff
path: root/tools/patman/main.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-01-29 14:14:14 -0700
committerSimon Glass <sjg@chromium.org>2022-02-09 12:30:12 -0700
commit5e2ab40172b42ae9ce6d58b95f238013184fa865 (patch)
tree9638f6c5be573a0c9af22bd4a971a36f892bbc9c /tools/patman/main.py
parentce31277160de2b8500f6a0e6fd284ef137e26628 (diff)
patman: Convert camel case in test_util.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/main.py')
-rwxr-xr-xtools/patman/main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/patman/main.py b/tools/patman/main.py
index 85073217b5..7a6e910f4b 100755
--- a/tools/patman/main.py
+++ b/tools/patman/main.py
@@ -135,12 +135,12 @@ if args.cmd == 'test':
from patman import func_test
result = unittest.TestResult()
- test_util.RunTestSuites(
+ test_util.run_test_suites(
result, False, False, False, None, None, None,
[test_checkpatch.TestPatch, func_test.TestFunctional,
'gitutil', 'settings', 'terminal'])
- sys.exit(test_util.ReportResult('patman', args.testname, result))
+ sys.exit(test_util.report_result('patman', args.testname, result))
# Process commits, produce patches files, check them, email them
elif args.cmd == 'send':