diff --git a/test/tap/tests_with_deps/deprecate_eof_support/deprecate_eof_cache-t.cpp b/test/tap/tests_with_deps/deprecate_eof_support/deprecate_eof_cache-t.cpp index 80cff90e7..7ca331d42 100644 --- a/test/tap/tests_with_deps/deprecate_eof_support/deprecate_eof_cache-t.cpp +++ b/test/tap/tests_with_deps/deprecate_eof_support/deprecate_eof_cache-t.cpp @@ -29,9 +29,9 @@ using std::pair; int create_testing_tables(MYSQL* mysql_server) { // Create the testing database int res = mysql_query(mysql_server, "CREATE DATABASE IF NOT EXISTS test"); - if (res != 0) { return mysql_errno(mysql_server); } + if (res != 0) { return mysql_errno(mysql_server); } res = mysql_query(mysql_server, "DROP TABLE IF EXISTS test.ok_packet_cache_test"); - if (res != 0) { return mysql_errno(mysql_server); } + if (res != 0) { return mysql_errno(mysql_server); } mysql_query( mysql_server, diff --git a/test/tap/tests_with_deps/deprecate_eof_support/fwd_eof_query.cpp b/test/tap/tests_with_deps/deprecate_eof_support/fwd_eof_query.cpp index fb35f95c4..8c232d6a6 100644 --- a/test/tap/tests_with_deps/deprecate_eof_support/fwd_eof_query.cpp +++ b/test/tap/tests_with_deps/deprecate_eof_support/fwd_eof_query.cpp @@ -137,7 +137,7 @@ int main(int argc, char** argv) { "MySQL Error: " + std::string { mysql_error(proxy) }+ "" }; std::cerr << "{ Code: Err, Result: " << err_msg << " }"; - res_code = -1; + res_code = -1; } mysql_free_result(select_res);