From 96d81f3bcdbb765f2b558e4d70f731910b4ded25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20Jaramago=20Fern=C3=A1ndez?= Date: Wed, 30 Nov 2022 12:21:14 +0100 Subject: [PATCH] Fix mixed indentation found on 'deprecate_eof_support' test files --- .../deprecate_eof_support/deprecate_eof_cache-t.cpp | 4 ++-- .../tests_with_deps/deprecate_eof_support/fwd_eof_query.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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);