Skip to content

Commit 5bc44db

Browse files
authored
Merge pull request #254 from marcransome/reformat_test_file
Reformat test file
2 parents 3841c61 + 9a16a3a commit 5bc44db

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/test_config.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,8 @@ flog_config_new_with_null_arg_values_fails(void **state) {
8989
expect_assert_failure(flog_config_new(mock_argc, mock_argv, &error));
9090
}
9191

92-
static void test_new_config_with_no_error_ptr_calls_assert(void **state) {
92+
static void
93+
test_new_config_with_no_error_ptr_calls_assert(void **state) {
9394
UNUSED(state);
9495

9596
int mock_argc = 0;
@@ -168,7 +169,8 @@ flog_config_new_with_long_category_opt_and_no_subsystem_opt_fails(void **state)
168169
assert_int_equal(error, FLOG_ERROR_SUBSYS);
169170
}
170171

171-
static void flog_config_with_short_subsystem_opt_and_no_subsystem_fails(void **state) {
172+
static void
173+
flog_config_with_short_subsystem_opt_and_no_subsystem_fails(void **state) {
172174
UNUSED(state);
173175

174176
FlogError error = TEST_ERROR;
@@ -184,7 +186,8 @@ static void flog_config_with_short_subsystem_opt_and_no_subsystem_fails(void **s
184186
assert_int_equal(error, FLOG_ERROR_OPTS);
185187
}
186188

187-
static void flog_config_with_long_subsystem_opt_and_no_subsystem_fails(void **state) {
189+
static void
190+
flog_config_with_long_subsystem_opt_and_no_subsystem_fails(void **state) {
188191
UNUSED(state);
189192

190193
FlogError error = TEST_ERROR;

0 commit comments

Comments
 (0)