From 57e5e6fc28620065ebef7f7f857039b33bcde15e Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Sat, 13 Jun 2026 09:26:35 +0200 Subject: [PATCH] fix indentation files --- tests/tests.c | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/tests.c b/tests/tests.c index 8f6442d..df101b5 100644 --- a/tests/tests.c +++ b/tests/tests.c @@ -8,18 +8,18 @@ int run_validate_tests(); int main() { - testgroupsfn testgroups[] = { - run_break_tests, - run_worktime_tests, - run_time_format_tests, - run_validate_tests - }; + testgroupsfn testgroups[] = { + run_break_tests, + run_worktime_tests, + run_time_format_tests, + run_validate_tests + }; - size_t count = sizeof(testgroups) / sizeof(testgroupsfn); - for (size_t i = 0; i < count; i++) { - if (testgroups[i]()) - return 1; - } + size_t count = sizeof(testgroups) / sizeof(testgroupsfn); + for (size_t i = 0; i < count; i++) { + if (testgroups[i]()) + return 1; + } - return 0; -} \ No newline at end of file + return 0; +} -- 2.47.3