Skip to content

Commit b99661e

Browse files
authored
Update Lib/test/test_math.py
1 parent d88b55f commit b99661e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2533,7 +2533,7 @@ def test_exception_messages(self):
25332533
math.log(x)
25342534
x = -123
25352535
with self.assertRaisesRegex(ValueError,
2536-
f"expected a positive input"):
2536+
"expected a positive input"):
25372537
math.log(x)
25382538
with self.assertRaisesRegex(ValueError,
25392539
f"expected a float or nonnegative integer, got {x}"):

0 commit comments

Comments
 (0)