diff options
author | marcinrzepeckiwroc <marcin.rzepecki@nokia.com> | 2020-08-25 14:13:14 +0200 |
---|---|---|
committer | marcinrzepeckiwroc <marcin.rzepecki@nokia.com> | 2020-08-25 14:13:14 +0200 |
commit | 0e8096a3cc7fc7d27648948e169a321173b4a033 (patch) | |
tree | a3c4d6fa650265b7f383be58b8665e8a39f52e4a /tests | |
parent | 6ca08114631d139902ed556a079c7893aa518a68 (diff) |
Fix BBS-EP CSIT
Issue-ID: DCAEGEN2-2273
Signed-off-by: marcinrzepeckiwroc <marcin.rzepecki@nokia.com>
Change-Id: I5282b676878e048e82bbc0f53df7b8fccc4cc97a
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dcaegen2-services-bbs-event-processor/bbs-testcases/resources/BbsLibrary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dcaegen2-services-bbs-event-processor/bbs-testcases/resources/BbsLibrary.py b/tests/dcaegen2-services-bbs-event-processor/bbs-testcases/resources/BbsLibrary.py index c58e67e2..640b33b0 100644 --- a/tests/dcaegen2-services-bbs-event-processor/bbs-testcases/resources/BbsLibrary.py +++ b/tests/dcaegen2-services-bbs-event-processor/bbs-testcases/resources/BbsLibrary.py @@ -18,7 +18,7 @@ class BbsLibrary(object): alog = container.logs(stream=False, tail=1000) try: - alog = alog.decode() + alog = alog.decode('utf-8').strip() except AttributeError: pass |