1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-06 10:17:15 +03:00

Do not expect numbers in exponent notation.

This commit is contained in:
Thomas Roten 2017-06-23 14:46:07 -05:00
parent a04be71ec7
commit f14d3b2e10

View File

@ -250,7 +250,6 @@ def test_large_numbers_render_directly(executor, value):
run(executor, "create table numbertest(a numeric)")
run(executor,
"insert into numbertest (a) values ({0})".format(value))
value = format(float(value), ',g')
assert value in run(executor, "select * from numbertest", join=True)