From 0d37d14a364f3ae1bc19638c6a3897e71e547b3e Mon Sep 17 00:00:00 2001 From: Michal Mielewczyk Date: Mon, 5 Aug 2019 06:21:06 -0400 Subject: [PATCH] pyocf: additional filed in volume type properties Signed-off-by: Michal Mielewczyk --- tests/functional/pyocf/types/volume.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/functional/pyocf/types/volume.py b/tests/functional/pyocf/types/volume.py index 6a6e18e..9fbf063 100644 --- a/tests/functional/pyocf/types/volume.py +++ b/tests/functional/pyocf/types/volume.py @@ -66,6 +66,7 @@ class VolumeProperties(Structure): ("_caps", VolumeCaps), ("_ops", VolumeOps), ("_io_ops", IoOps), + ("_deinit", c_char_p), ] @@ -125,6 +126,7 @@ class Volume(Structure): _io_ops=IoOps( _set_data=cls._io_set_data, _get_data=cls._io_get_data ), + _deinit=0, ) return cls.props