Skip to content

Commit 131b92a

Browse files
committed
Reorder calls
1 parent 8547393 commit 131b92a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_opcache.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1371,10 +1371,10 @@ def float_lhs(arg):
13711371
compactlong_lhs(0)
13721372
with self.assertRaises(ZeroDivisionError):
13731373
compactlong_lhs(0.0)
1374-
with self.assertRaises(ZeroDivisionError):
1375-
float_lhs(0)
13761374
with self.assertRaises(ZeroDivisionError):
13771375
float_lhs(0.0)
1376+
with self.assertRaises(ZeroDivisionError):
1377+
float_lhs(0)
13781378

13791379
@cpython_only
13801380
@requires_specialization_ft

0 commit comments

Comments
 (0)