From a81be31dd42a3cb9c7393a2cb5288bb2c69d9d3f Mon Sep 17 00:00:00 2001 From: Michal Mielewczyk Date: Fri, 26 Feb 2021 07:39:45 -0500 Subject: [PATCH] pyocf: default range for int16 Signed-off-by: Michal Mielewczyk --- tests/functional/tests/utils/random.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/functional/tests/utils/random.py b/tests/functional/tests/utils/random.py index 9d642d2..d16b163 100644 --- a/tests/functional/tests/utils/random.py +++ b/tests/functional/tests/utils/random.py @@ -28,6 +28,7 @@ class Range: class DefaultRanges(Range, enum.Enum): UINT8 = 0, c_uint8(-1).value + INT16 = int(-c_uint16(-1).value / 2) - 1, int(c_uint16(-1).value / 2) UINT16 = 0, c_uint16(-1).value UINT32 = 0, c_uint32(-1).value UINT64 = 0, c_uint64(-1).value