diff options
author | Vincent Danno <vincent.danno@orange.com> | 2021-05-20 14:36:33 +0200 |
---|---|---|
committer | Vincent Danno <vincent.danno@orange.com> | 2021-05-20 20:48:32 +0200 |
commit | b66af994ab21266fcebf8dd99d52b88826d1b304 (patch) | |
tree | 3f079281be5716affe6b9b78c1f8021189178c74 /xtesting/ci | |
parent | d340a8e8f99fef80c5fa3a45c4e1b06e5b0aeb39 (diff) |
Delete dead code
The piece of code became unused following change
https://gerrit.opnfv.org/gerrit/c/functest/+/39443
Signed-off-by: Vincent Danno <vincent.danno@orange.com>
Change-Id: I0bf80790c05cef217be574ad196d8c4e8dfb4c2d
Diffstat (limited to 'xtesting/ci')
-rw-r--r-- | xtesting/ci/tier_handler.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/xtesting/ci/tier_handler.py b/xtesting/ci/tier_handler.py index 6f78f202..86f1374f 100644 --- a/xtesting/ci/tier_handler.py +++ b/xtesting/ci/tier_handler.py @@ -16,24 +16,6 @@ import textwrap import prettytable -LINE_LENGTH = 72 - - -def split_text(text, max_len): - words = text.split() - lines = [] - line = "" - for word in words: - if len(line) + len(word) < max_len - 1: - line += word + " " - else: - lines.append(line) - line = word + " " - if line != "": - lines.append(line) - return lines - - class Tier(): def __init__(self, name, description=""): |