From 8e3587493d685745e08c97e25ec8b2b3a7bd3a00 Mon Sep 17 00:00:00 2001 From: Mark Beierl Date: Wed, 24 Aug 2016 15:30:15 -0400 Subject: Slope error Test and fix for error in slope STORPERF-74 Change-Id: I17a8e0e1e588deb875ecace85290f92167df1d5e Signed-off-by: Mark Beierl --- storperf/utilities/steady_state.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'storperf/utilities') diff --git a/storperf/utilities/steady_state.py b/storperf/utilities/steady_state.py index 8bfcb93..233bc78 100644 --- a/storperf/utilities/steady_state.py +++ b/storperf/utilities/steady_state.py @@ -34,8 +34,8 @@ def steady_state(data_series): average_value is not None): # Verification of the Steady State conditions following the SNIA # definition - range_condition = range_value < 0.20 * abs(average_value) - slope_condition = slope_value < 0.10 * abs(average_value) + range_condition = abs(range_value) < 0.20 * abs(average_value) + slope_condition = abs(slope_value) < 0.10 * abs(average_value) steady_state = range_condition and slope_condition -- cgit 1.2.3-korg