From 502462c4bd6df4ee9934cc80bd7448967ccb35c0 Mon Sep 17 00:00:00 2001 From: Francis ANDRE Date: Thu, 29 Mar 2018 15:42:54 +0200 Subject: [PATCH] Rename poco_assertTrue to poco_assert --- Data/ODBC/testsuite/src/SQLExecutor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Data/ODBC/testsuite/src/SQLExecutor.cpp b/Data/ODBC/testsuite/src/SQLExecutor.cpp index b38ecae47..483af8f6d 100644 --- a/Data/ODBC/testsuite/src/SQLExecutor.cpp +++ b/Data/ODBC/testsuite/src/SQLExecutor.cpp @@ -2437,12 +2437,12 @@ void SQLExecutor::blobStmt() assertTrue (count == 1); CLOB res; - poco_assertTrue (res.size() == 0); + poco_assert (res.size() == 0); Statement stmt = (session() << "SELECT Image FROM Person", into(res)); try { stmt.execute(); } catch(ConnectionException& ce){ std::cout << ce.toString() << std::endl; fail (funct); } catch(StatementException& se){ std::cout << se.toString() << std::endl; fail (funct); } - poco_assertTrue (res == blob); + poco_assert (res == blob); }