We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b97f41d commit c464f12Copy full SHA for c464f12
tests/config/read.c
@@ -952,7 +952,16 @@ void test_config_read__get_mapped(void)
952
int known_good;
953
954
cl_set_cleanup(&clean_test_config, NULL);
955
- 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"
956
+ " key1 = 1\n"
957
+ " key2 = true\n"
958
+ " key3\n"
959
+ " key4 = always\n"
960
+ " key5 = false\n"
961
+ " key6 = 0\n"
962
+ " key7 = never\n"
963
+ " key8 = On\n"
964
+ " key9 = off\n");
965
cl_git_pass(git_config_open_ondisk(&cfg, "./testconfig"));
966
967
// check parsing bool and string
0 commit comments