From 4cb6f8cc6a3a799abcf52aa70290b0c9b9cce57c Mon Sep 17 00:00:00 2001 From: Zaid Humayun Date: Tue, 4 Feb 2025 20:53:10 +0530 Subject: [PATCH] fixing: failing test was expecting 2.50000 this test is behaving differently in different environments --- testing/scalar-functions-printf.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/scalar-functions-printf.test b/testing/scalar-functions-printf.test index e152698d3..30e7a3228 100644 --- a/testing/scalar-functions-printf.test +++ b/testing/scalar-functions-printf.test @@ -19,4 +19,4 @@ do_execsql_test printf-numeric-replacement { # Multiple consecutive format specifiers do_execsql_test printf-consecutive-formats { SELECT printf('%d%s%f', 1, 'test', 2.5); -} {{1test2.500000}} \ No newline at end of file +} {{1test2.5}} \ No newline at end of file