From 6332efd8b49c5c84f5d57ae88d6efcedde3dc253 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Thu, 6 Aug 2020 11:18:20 -0700 Subject: [PATCH] Fix formatting --- src/soc/fu/mul/test/test_pipe_caller.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/soc/fu/mul/test/test_pipe_caller.py b/src/soc/fu/mul/test/test_pipe_caller.py index 42d9e334..3033e2a5 100644 --- a/src/soc/fu/mul/test/test_pipe_caller.py +++ b/src/soc/fu/mul/test/test_pipe_caller.py @@ -287,8 +287,12 @@ class MulTestCase(TestAccumulatorBase): def case_mulli(self): - test_values = [-32768, -32767, -32766, -2, -1, 0, 1, 2, 32766, 32767, random.randint(-1 << 15, (1 << 15)-1), random.randint(-1 << 15, ( - 1 << 15) - 1), random.randint(-1 << 15, (1 << 15)-1), random.randint(-1 << 15, (1 << 15)-1), random.randint(-1 << 15, (1 << 15)-1)] + test_values = [-32768, -32767, -32766, -2, -1, 0, 1, 2, 32766, 32767, + random.randint(-1 << 15, (1 << 15)-1), random.randint( + -1 << 15, (1 << 15) - 1), random.randint(-1 << 15, + (1 << 15)-1), random.randint(-1 << 15, (1 << 15)-1), + random.randint(-1 << 15, (1 << 15)-1) + ] l = ["mulli 3, 1, 2"] for ra in test_values: -- 2.30.2