summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-09-19 12:21:30 +0200
committerQC <qball@gmpclient.org>2015-09-19 12:21:30 +0200
commit442e235c24fa33a499e51b4a2f7ff95fb4ab43ad (patch)
treec74a3fea5b7286e9d4e60f3fc656805b3a0fad07 /test
parent4c970fe4da46b2b463a59acdb4ec807cf83c61c4 (diff)
Some cleanups, tweak uncrustify.
Diffstat (limited to 'test')
-rw-r--r--test/helper-test.c3
-rw-r--r--test/textbox-test.c5
2 files changed, 6 insertions, 2 deletions
diff --git a/test/helper-test.c b/test/helper-test.c
index a80b4485..6a1e865b 100644
--- a/test/helper-test.c
+++ b/test/helper-test.c
@@ -27,7 +27,8 @@ int main ( int argc, char ** argv )
cmd_set_arguments ( argc, argv );
char **list = NULL;
int llength = 0;
- char * test_str = "{host} {terminal} -e bash -c \"{ssh-client} {host}; echo '{terminal} {host}'\"";
+ char * test_str =
+ "{host} {terminal} -e bash -c \"{ssh-client} {host}; echo '{terminal} {host}'\"";
helper_parse_setup ( test_str, &list, &llength, "{host}", "chuck",
"{terminal}", "x-terminal-emulator", NULL );
diff --git a/test/textbox-test.c b/test/textbox-test.c
index e7ad022a..59a592ae 100644
--- a/test/textbox-test.c
+++ b/test/textbox-test.c
@@ -87,7 +87,10 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
// Set alternate row to normal row.
config.menu_bg_alt = config.menu_bg;
textbox_setup ( &vinfo, map );
- textbox *box = textbox_create ( mw, &vinfo, map, TB_EDITABLE | TB_AUTOWIDTH | TB_AUTOHEIGHT, 0, 0, -1, -1, NORMAL, "test" );
+ textbox *box =
+ textbox_create ( mw, &vinfo, map, TB_EDITABLE | TB_AUTOWIDTH | TB_AUTOHEIGHT, 0, 0, -1, -1,
+ NORMAL,
+ "test" );
TASSERT ( box != NULL );
textbox_cursor_end ( box );