Skip to content

Commit 0353e99

Browse files
committed
address review: fix .6_f test (enlarge integer part)
1 parent 51592d4 commit 0353e99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_decimal.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1092,7 +1092,7 @@ def test_formatting(self):
10921092
# and now for something completely different...
10931093
('.,', '1.23456789', '1.234,567,89'),
10941094
('._', '1.23456789', '1.234_567_89'),
1095-
('.6_f', '1.23456789', '1.234_568'),
1095+
('.6_f', '12345.23456789', '12345.234_568'),
10961096
(',._%', '123.456789', '12,345.678_9%'),
10971097
(',._e', '123456', '1.234_56e+5'),
10981098
(',.4_e', '123456', '1.234_6e+5'),

0 commit comments

Comments
 (0)