From ec99193655606eeb40abc2539296baedaf80522d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn=20Nieto?= Date: Tue, 29 Mar 2011 10:52:29 +0200 Subject: [PATCH] force-rename test: check for the right name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín Nieto --- tests/t10-refs.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/t10-refs.c b/tests/t10-refs.c index e40536475..c1511040e 100644 --- a/tests/t10-refs.c +++ b/tests/t10-refs.c @@ -585,9 +585,9 @@ BEGIN_TEST(rename5, "can force-rename a reference with the name of an existing r /* Can not be renamed to the name of another existing reference. */ must_pass(git_reference_rename_force(looked_up_ref, packed_test_head_name)); - /* Failure to rename it hasn't corrupted its state */ - must_pass(git_reference_lookup(&looked_up_ref, repo, packed_head_name)); - must_be_true(!strcmp(looked_up_ref->name, packed_head_name)); + /* Check we actually renamed it */ + must_pass(git_reference_lookup(&looked_up_ref, repo, packed_test_head_name)); + must_be_true(!strcmp(looked_up_ref->name, packed_test_head_name)); close_temp_repo(repo); END_TEST