diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-06-23 09:01:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 09:01:06 (GMT) |
commit | 5a3108044d2e5b694da2d1f4176c9bbaef15c142 (patch) | |
tree | 1d57a8f4beca796b4540df50eb768a89833dd83b /Lib/test/test_float.py | |
parent | c3f52b4d707a78eb342372a2be00f3eb846a05b9 (diff) | |
download | cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.zip cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.gz cpython-5a3108044d2e5b694da2d1f4176c9bbaef15c142.tar.bz2 |
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
Diffstat (limited to 'Lib/test/test_float.py')
-rw-r--r-- | Lib/test/test_float.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_float.py b/Lib/test/test_float.py index f0ed40f..38a17ce 100644 --- a/Lib/test/test_float.py +++ b/Lib/test/test_float.py @@ -1184,10 +1184,10 @@ class HexFloatTestCase(unittest.TestCase): def test_from_hex(self): - MIN = self.MIN; - MAX = self.MAX; - TINY = self.TINY; - EPS = self.EPS; + MIN = self.MIN + MAX = self.MAX + TINY = self.TINY + EPS = self.EPS # two spellings of infinity, with optional signs; case-insensitive self.identical(fromHex('inf'), INF) |