File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -266,15 +266,15 @@ void test_sparsevec_from_string() {
266266
267267 assert_exception<pqxx::conversion_error>([] {
268268 auto unused = pqxx::from_string<pgvector::SparseVector>(" {1:4e38}/1" );
269- }, " Could not convert '4e38' to float: Value out of range. " );
269+ });
270270
271271 assert_exception<pqxx::conversion_error>([] {
272272 auto unused = pqxx::from_string<pgvector::SparseVector>(" {a:1}/1" );
273273 }, " Could not convert 'a' to int: Invalid argument." );
274274
275275 assert_exception<pqxx::conversion_error>([] {
276276 auto unused = pqxx::from_string<pgvector::SparseVector>(" {1:a}/1" );
277- }, " Could not convert 'a' to float: Invalid argument. " );
277+ });
278278
279279 assert_exception<pqxx::conversion_error>([] {
280280 auto unused = pqxx::from_string<pgvector::SparseVector>(" {}/a" );
You can’t perform that action at this time.
0 commit comments