Skip to content

Commit

Permalink
Update test_formats.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rich-iannone committed Oct 25, 2023
1 parent b1c646c commit 0f7ca7b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_formats.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,12 @@ def test_format_number_with_separator(number: Union[int, float, str], x_out: str
("1.5e-5", "0.000015"),
("-1e-5", "-0.00001"),
("-1.5e-5", "-0.000015"),
# ("1e5", "100000"), <- doesn't work
# ("1.5e5", "150000"), <- doesn't work
("1E-5", "0.00001"),
("1.5E-5", "0.000015"),
("-1E-5", "-0.00001"),
("-1.5E-5", "-0.000015"),
# ("1E+5", "100000"), # <- doesn't work
# ("1.5E+5", "150000"), # <- doesn't work
("150000", "150000"),
],
)
Expand Down

0 comments on commit 0f7ca7b

Please sign in to comment.