From: Jacob Lifshay Date: Sat, 20 May 2023 02:52:43 +0000 (-0700) Subject: format code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f1aa9c9ba2415dea75e4020dc73b3fc97bbb324;p=openpower-isa.git format code --- 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)