Skip to content

Commit 54a5245

Browse files
committed
tests: submodule git lookup can be dupped test comments have been changed.
1 parent 428f1ac commit 54a5245

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/submodule/lookup.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ void test_submodule_lookup__can_be_dupped(void)
4848
git_submodule *sm_duplicate;
4949
const char *oid = "480095882d281ed676fe5b863569520e54a7d5c0";
5050

51-
// Check original
51+
/* Check original */
5252
cl_git_pass(git_submodule_lookup(&sm, g_repo, "sm_unchanged"));
5353
cl_assert(git_submodule_owner(sm) == g_repo);
5454
cl_assert_equal_s("sm_unchanged", git_submodule_name(sm));
@@ -62,11 +62,11 @@ void test_submodule_lookup__can_be_dupped(void)
6262
cl_assert(git_submodule_ignore(sm) == GIT_SUBMODULE_IGNORE_NONE);
6363
cl_assert(git_submodule_update_strategy(sm) == GIT_SUBMODULE_UPDATE_CHECKOUT);
6464

65-
// Duplicate and free original
65+
/* Duplicate and free original */
6666
cl_assert(git_submodule_dup(&sm_duplicate, sm) == 0);
6767
git_submodule_free(sm);
6868

69-
// Check duplicate
69+
/* Check duplicate */
7070
cl_assert(git_submodule_owner(sm_duplicate) == g_repo);
7171
cl_assert_equal_s("sm_unchanged", git_submodule_name(sm_duplicate));
7272
cl_assert(git__suffixcmp(git_submodule_path(sm_duplicate), "sm_unchanged") == 0);

0 commit comments

Comments
 (0)