diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-29 21:46:19 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-11-05 09:11:31 -0700 |
commit | d93720e13800423d3d6c9f8318d5a75ce7362639 (patch) | |
tree | 139a6fe152935166b3a2c0f0cff73dafd1ccad9b /tools/patman/func_test.py | |
parent | 5769904082aa976e7d1676adc673977c9f8c7717 (diff) | |
download | u-boot-d93720e13800423d3d6c9f8318d5a75ce7362639.tar.gz |
patman: Rename functions in patchstream
Rename these functions to lower case as per PEP8.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/patman/func_test.py')
-rw-r--r-- | tools/patman/func_test.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/patman/func_test.py b/tools/patman/func_test.py index ea3c84632c..bdeccafda0 100644 --- a/tools/patman/func_test.py +++ b/tools/patman/func_test.py @@ -191,12 +191,12 @@ class TestFunctional(unittest.TestCase): } text = self._get_text('test01.txt') - series = patchstream.GetMetaDataForTest(text) + series = patchstream.get_metadata_for_test(text) cover_fname, args = self._create_patches_for_test(series) with capture_sys_output() as out: - patchstream.FixPatches(series, args) + patchstream.fix_patches(series, args) if cover_fname and series.get('cover'): - patchstream.InsertCoverLetter(cover_fname, series, count) + patchstream.insert_cover_letter(cover_fname, series, count) series.DoChecks() cc_file = series.MakeCcFile(process_tags, cover_fname, not ignore_bad_tags, add_maintainers, |