From 59227999da3b08d2992903a4b3785a871ca63b72 Mon Sep 17 00:00:00 2001 From: Michael Lyulko Date: Sun, 19 Feb 2023 14:59:34 +0200 Subject: [PATCH] pyocf: fix standby detach completion Signed-off-by: Michal Mielewczyk --- tests/functional/pyocf/types/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/pyocf/types/cache.py b/tests/functional/pyocf/types/cache.py index c6d5118..6aaae05 100644 --- a/tests/functional/pyocf/types/cache.py +++ b/tests/functional/pyocf/types/cache.py @@ -296,7 +296,7 @@ class Cache: def standby_detach(self): self.write_lock() - c = OcfCompletion([("cache", c_void_p), ("priv", c_void_p), ("error", c_int)]) + c = OcfCompletion([("priv", c_void_p), ("error", c_int)]) self.owner.lib.ocf_mngt_cache_standby_detach(self, c, None) c.wait() self.write_unlock()