summaryrefslogtreecommitdiff
path: root/tests-clar/clone/empty.c
diff options
context:
space:
mode:
authorVicent Martí <vicent@github.com>2013-09-17 03:45:35 -0700
committerVicent Martí <vicent@github.com>2013-09-17 03:45:35 -0700
commitefc9e6700fabc91ea490fcc5ea034b51648c9e88 (patch)
tree08f13e7c4f17a3e35f7342d51363441833ac59f4 /tests-clar/clone/empty.c
parent38fba8371e4c6c0042645a8bf2ba4aa2f2cdf730 (diff)
parent605da51a2cfd86901b6fa5f9cf71111a63ab4418 (diff)
downloadlibgit2-efc9e6700fabc91ea490fcc5ea034b51648c9e88.tar.gz
Merge pull request #1856 from libgit2/cmn/no-orphans
No such thing as an orphan branch
Diffstat (limited to 'tests-clar/clone/empty.c')
-rw-r--r--tests-clar/clone/empty.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests-clar/clone/empty.c b/tests-clar/clone/empty.c
index f92fa6cbb..d9dc24fde 100644
--- a/tests-clar/clone/empty.c
+++ b/tests-clar/clone/empty.c
@@ -44,7 +44,7 @@ void test_clone_empty__can_clone_an_empty_local_repo_barely(void)
g_options.bare = true;
cl_git_pass(git_clone(&g_repo_cloned, "./empty_bare.git", "./empty", &g_options));
- /* Although the HEAD is orphaned... */
+ /* Although the HEAD is unborn... */
cl_assert_equal_i(GIT_ENOTFOUND, git_reference_lookup(&ref, g_repo_cloned, local_name));
/* ...one can still retrieve the name of the remote tracking reference */
@@ -59,7 +59,7 @@ void test_clone_empty__can_clone_an_empty_local_repo_barely(void)
cl_assert_equal_s(expected_remote_name, buffer);
- /* ...even when the remote HEAD is orphaned as well */
+ /* ...even when the remote HEAD is unborn as well */
cl_assert_equal_i(GIT_ENOTFOUND, git_reference_lookup(&ref, g_repo_cloned,
expected_tracked_branch_name));
}