bpo-28395: Remove unnecessary semicolons in tests (GH-26868)
(cherry picked from commit 5a3108044d2e5b694da2d1f4176c9bbaef15c142)
Co-authored-by: Dong-hee Na <donghee.na@python.org>
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 @@ def test_whitespace(self):
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)