]> git.proxmox.com Git - libgit2.git/blobdiff - tests/worktree/config.c
New upstream version 0.28.1+dfsg.1
[libgit2.git] / tests / worktree / config.c
index 3ab317bb5b5467720fb6b4b2e197172c994d8a4f..81dcfe1fa51f1b0b85cacec53763e0755240be13 100644 (file)
@@ -36,8 +36,10 @@ void test_worktree_config__set(void)
        cl_git_pass(git_config_set_int32(cfg, "core.dummy", 5));
        git_config_free(cfg);
 
-       // reopen to verify configuration has been set in the
-       // common dir
+       /*
+        * reopen to verify configuration has been set in the
+        * common dir
+        */
        cl_git_pass(git_repository_config(&cfg, fixture.repo));
        cl_git_pass(git_config_get_int32(&val, cfg, "core.dummy"));
        cl_assert_equal_i(val, 5);