1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Cleanup Whitespace in unittest/ directory

Cleanup unnecessary whitespace at the end of lines and end of files
in the unittest/ directory. Note that all code changes are
non-functional.

All new code of the whole pull request, including one or several files
that are either new files or modified ones, are contributed under the
BSD-new license. I am contributing on behalf of my employer Amazon Web
Services, Inc.
This commit is contained in:
Souradeep Saha
2024-06-27 00:18:39 +00:00
committed by Daniel Black
parent d83742622d
commit 4dde925f54
28 changed files with 479 additions and 494 deletions

View File

@@ -30,7 +30,7 @@ class Json_writer;
/* Several fake objects */
class Opt_trace
class Opt_trace
{
public:
void enable_tracing_if_required() {}
@@ -38,7 +38,7 @@ public:
Json_writer *get_current_json() { return nullptr; }
};
class THD
class THD
{
public:
Opt_trace opt_trace;
@@ -60,7 +60,7 @@ int main(int args, char **argv)
{
Json_writer w;
w.start_object();
w.add_member("foo");
w.add_member("foo");
w.end_object();
ok(w.invalid_json, "Started a name but didn't add a value");
}
@@ -143,4 +143,3 @@ int main(int args, char **argv)
return exit_status();
}