]> gitweb.hhaalo.de Git - feierabend.git/commitdiff
fix indentation files
authorBastian Dehn <hhaalo@arcor.de>
Sat, 13 Jun 2026 07:26:35 +0000 (09:26 +0200)
committerBastian Dehn <hhaalo@arcor.de>
Sat, 13 Jun 2026 07:26:35 +0000 (09:26 +0200)
tests/tests.c

index 8f6442d1862dbbdf14d9f0a1e01320779e57b2d3..df101b5a5ffdc2a2ba4075f890a701eea446a613 100644 (file)
@@ -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;
+}