From 7f1aa9c9ba2415dea75e4020dc73b3fc97bbb324 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 19 May 2023 19:52:43 -0700 Subject: [PATCH] format code --- src/openpower/test/fmv_fcvt/fmv_fcvt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/openpower/test/fmv_fcvt/fmv_fcvt.py b/src/openpower/test/fmv_fcvt/fmv_fcvt.py index 652fc2e9..5fb6f69d 100644 --- a/src/openpower/test/fmv_fcvt/fmv_fcvt.py +++ b/src/openpower/test/fmv_fcvt/fmv_fcvt.py @@ -282,7 +282,7 @@ class FMvFCvtCases(TestAccumulatorBase): self.toint(-math.inf, 0, "-Infinity", signed=False) self.toint(math.nan, 0, "NaN", signed=False) self.toint(math.nan, 0, "SNaN", inp_bits=0x7ff0_0000_0000_0001, - signed=False) + signed=False) self.toint(min_value, 0, "MIN", signed=False) self.toint(-min_value, 0, "-MIN", signed=False) self.toint(0.1, 0, "0.1", signed=False) @@ -315,7 +315,7 @@ class FMvFCvtCases(TestAccumulatorBase): self.toint(-math.inf, 0, "-Inf", _32bit=False) self.toint(math.nan, 0, "NaN", _32bit=False) self.toint(math.nan, 0, "SNaN", - inp_bits=0x7ff0_0000_0000_0001, _32bit=False) + inp_bits=0x7ff0_0000_0000_0001, _32bit=False) self.toint(0.0, 0, "zero", _32bit=False) self.toint(-0.0, 0, "-zero", _32bit=False) self.toint(min_value, 0, _32bit=False) @@ -414,7 +414,7 @@ class FMvFCvtCases(TestAccumulatorBase): self.toint(-math.inf, 0, "-Infinity", signed=False, _32bit=False) self.toint(math.nan, 0, "NaN", signed=False, _32bit=False) self.toint(math.nan, 0, "SNaN", inp_bits=0x7ff0_0000_0000_0001, - signed=False, _32bit=False) + signed=False, _32bit=False) self.toint(min_value, 0, "MIN", signed=False, _32bit=False) self.toint(-min_value, 0, "-MIN", signed=False, _32bit=False) self.toint(0.1, 0, "0.1", signed=False, _32bit=False) -- 2.30.2