format code
authorJacob Lifshay <programmerjake@gmail.com>
Sat, 20 May 2023 02:52:43 +0000 (19:52 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Sat, 20 May 2023 02:53:17 +0000 (19:53 -0700)
src/openpower/test/fmv_fcvt/fmv_fcvt.py

index 652fc2e98732bdfa51d7bc3cd534160376e48f94..5fb6f69d335c629dbfcbe7b48fe45971a95ff719 100644 (file)
@@ -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)