summaryrefslogtreecommitdiff
path: root/tests/test-ot-opt-utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-ot-opt-utils.c')
-rw-r--r--tests/test-ot-opt-utils.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/test-ot-opt-utils.c b/tests/test-ot-opt-utils.c
index 45de154d..3a700f4d 100644
--- a/tests/test-ot-opt-utils.c
+++ b/tests/test-ot-opt-utils.c
@@ -18,13 +18,13 @@
*/
#include "config.h"
+#include "libglnx.h"
#include "ostree-mutable-tree.h"
+#include "ot-opt-utils.h"
+#include <gio/gio.h>
#include <glib.h>
#include <stdlib.h>
-#include <gio/gio.h>
#include <string.h>
-#include "ot-opt-utils.h"
-#include "libglnx.h"
static GString *printerr_str = NULL;
@@ -39,8 +39,8 @@ util_usage_error_printerr (const gchar *string)
static void
test_ot_util_usage_error (void)
{
- g_autoptr(GError) error = NULL;
- g_autoptr(GOptionContext) context = g_option_context_new ("[TEST]");
+ g_autoptr (GError) error = NULL;
+ g_autoptr (GOptionContext) context = g_option_context_new ("[TEST]");
GPrintFunc old_printerr = g_set_printerr_handler (util_usage_error_printerr);
ot_util_usage_error (context, "find_me", &error);
@@ -54,9 +54,10 @@ test_ot_util_usage_error (void)
printerr_str = NULL;
}
-int main (int argc, char **argv)
+int
+main (int argc, char **argv)
{
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/ot-opt-utils/ot-util-usage-error", test_ot_util_usage_error);
- return g_test_run();
+ return g_test_run ();
}