summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Roten <tsr@lavabit.com>2017-06-23 14:46:07 -0500
committerThomas Roten <tsr@lavabit.com>2017-06-23 14:46:07 -0500
commitf14d3b2e10bdced6d4d3e09c92757a6541731120 (patch)
tree0170787182b9bd2d5ab8e05c4ccedfcba00dd780
parenta04be71ec7e4a79f6830b740211043b8b90080d1 (diff)
Do not expect numbers in exponent notation.
-rw-r--r--tests/test_pgexecute.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_pgexecute.py b/tests/test_pgexecute.py
index 315d033a..fb05ba3a 100644
--- a/tests/test_pgexecute.py
+++ b/tests/test_pgexecute.py
@@ -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)