From d5ae76417568ffa7ab6b9c347befd240f803b173 Mon Sep 17 00:00:00 2001 From: Michal Mielewczyk Date: Thu, 15 Apr 2021 11:08:47 +0200 Subject: [PATCH] pyocf: fix valid seq cutoff threshold range 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 50913f7..139727f 100644 --- a/tests/functional/pyocf/types/cache.py +++ b/tests/functional/pyocf/types/cache.py @@ -84,7 +84,7 @@ class ConfValidValues: cleaning_acp_wake_up_time_range = range(0, 10000) cleaning_acp_flush_max_buffers_range = range(1, 10000) - seq_cutoff_threshold_rage = range(1, 4194181) + seq_cutoff_threshold_rage = range(1, 4294841344) seq_cutoff_promotion_range = range(1, 65535) ioclass_id_range = range(0, 32)