aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--test/unit_tests/shared/command.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/unit_tests/shared/command.hpp b/test/unit_tests/shared/command.hpp
index de7c704..69c230f 100644
--- a/test/unit_tests/shared/command.hpp
+++ b/test/unit_tests/shared/command.hpp
@@ -94,8 +94,10 @@ public:
}
void get_result(Action action, const ReadResult& read_result) {
- return get_result(
- action, [](Args&) {}, read_result);
+ // clang-format off
+ // lmao, why would you want to place the arguments on the next line?
+ return get_result(action, [](Args&) {}, read_result);
+ // clang-format on
}
void get_result(Action action) {