From 1c988e311ea3f809f2711b39de5a59869ddbd9d5 Mon Sep 17 00:00:00 2001 From: Slawomir Jankowski Date: Tue, 11 Feb 2020 14:39:38 +0100 Subject: [PATCH] Fix for flushing progress getting Signed-off-by: Slawomir Jankowski --- test/functional/api/cas/casadm_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/api/cas/casadm_parser.py b/test/functional/api/cas/casadm_parser.py index 8bedf67..d79ac4d 100644 --- a/test/functional/api/cas/casadm_parser.py +++ b/test/functional/api/cas/casadm_parser.py @@ -228,7 +228,7 @@ def get_flushing_progress(cache_id: int, core_id: int = None): except Exception: break raise CmdException(f"There is no flushing progress in casadm list output. (cache {cache_id}" - f"{' core ' + core_id if core_id is not None else ''})", + f"{' core ' + str(core_id) if core_id is not None else ''})", casadm_output)