Skip to content

Commit

Permalink
Improve formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Strickroth <[email protected]>
  • Loading branch information
csware committed Sep 9, 2020
1 parent b97f41d commit c464f12
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/config/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,16 @@ void test_config_read__get_mapped(void)
int known_good;

cl_set_cleanup(&clean_test_config, NULL);
cl_git_mkfile("./testconfig", "[header]\n key1 = 1\n key2 = true\n key3\n key4 = always\n key5 = false\n key6 = 0\n key7 = never\n key8 = On\n key9 = off");
cl_git_mkfile("./testconfig", "[header]\n"
" key1 = 1\n"
" key2 = true\n"
" key3\n"
" key4 = always\n"
" key5 = false\n"
" key6 = 0\n"
" key7 = never\n"
" key8 = On\n"
" key9 = off\n");
cl_git_pass(git_config_open_ondisk(&cfg, "./testconfig"));

// check parsing bool and string
Expand Down

0 comments on commit c464f12

Please sign in to comment.