From 66c695bd1ea3c65e729719c25ef85fb88604e2ba Mon Sep 17 00:00:00 2001 From: Rafal Stefanowski Date: Mon, 25 Nov 2019 16:45:04 +0100 Subject: [PATCH] Fix CacheConfig class indentation issue Signed-off-by: Rafal Stefanowski --- test/functional/api/cas/cache_config.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/test/functional/api/cas/cache_config.py b/test/functional/api/cas/cache_config.py index d97e5ce..6c0181b 100644 --- a/test/functional/api/cas/cache_config.py +++ b/test/functional/api/cas/cache_config.py @@ -132,10 +132,9 @@ class CacheConfig: self.eviction_policy = eviction_policy self.metadata_mode = metadata_mode - -def __eq__(self, other): - return self.cache_line_size == other.cache_line_size and \ - self.cache_mode == other.cache_mode and \ - self.cleaning_policy == other.cleaning_policy and \ - self.eviction_policy == other.eviction_policy and \ - self.metadata_mode == other.metadata_mode + def __eq__(self, other): + return self.cache_line_size == other.cache_line_size and \ + self.cache_mode == other.cache_mode and \ + self.cleaning_policy == other.cleaning_policy and \ + self.eviction_policy == other.eviction_policy and \ + self.metadata_mode == other.metadata_mode