diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-06-23 10:02:40 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 10:02:40 (GMT) |
commit | 280425d41797f9c0b20fb02a22341937a13a8987 (patch) | |
tree | e8f76a40da5decb8c634c22595a5e7f18943e4f5 /Lib/test/test_float.py | |
parent | 7e6cad7e303b3991360a0fe332b0d21aa0f6fe5e (diff) | |
download | cpython-280425d41797f9c0b20fb02a22341937a13a8987.zip cpython-280425d41797f9c0b20fb02a22341937a13a8987.tar.gz cpython-280425d41797f9c0b20fb02a22341937a13a8987.tar.bz2 |
bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
(cherry picked from commit 5a3108044d2e5b694da2d1f4176c9bbaef15c142)
Co-authored-by: Dong-hee Na <donghee.na@python.org>
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) |