Fix that one old test to not go through float()

This commit is contained in:
K. Lange 2022-06-29 13:55:21 +09:00
parent e7ca71ec96
commit 0d28885009

View File

@ -33,6 +33,6 @@ def __main__():
ordering[m3] = px
m0 = ordering[m0]
print(str(float(ordering[1])*ordering[ordering[1]]).replace('.0',''))
print(ordering[1]*ordering[ordering[1]])
__main__()