6110cd3078
Since automatically formatting tests with black, we have lost one line of code coverage. This adds an explicit test to ensure we are testing the case that is no longer covered implicitly.
7 lines
154 B
Python
7 lines
154 B
Python
# since black code formatter does not allow leading decimal point with nothing
|
|
# before it, we need to test it explicitly
|
|
|
|
# fmt: off
|
|
print(.1)
|
|
# fmt: on
|