diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test-postgresql.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-postgresql.cpp b/test/test-postgresql.cpp index 727e08c..dda05ca 100644 --- a/test/test-postgresql.cpp +++ b/test/test-postgresql.cpp @@ -134,7 +134,7 @@ using FloatTypes = boost::mpl::list<float, double>; BOOST_AUTO_TEST_CASE_TEMPLATE(write_floats, T, FloatTypes) { MyGrate::Output::Pq::WritePqCopyStream c {s}; - c(T {1.1}); + c(T {1.1F}); flush(); BOOST_REQUIRE(out); |