Don't strcmp a git_buf, strcmp its char *

This commit is contained in:
Edward Thomson 2014-01-29 12:50:42 -08:00
parent cd4aa602c9
commit 96f12e709b

View File

@ -233,7 +233,7 @@ void test_network_remote_remotes__transform(void)
git_buf ref = GIT_BUF_INIT;
cl_git_pass(git_refspec_transform(&ref, _refspec, "refs/heads/master"));
cl_assert_equal_s(ref, "refs/remotes/test/master");
cl_assert_equal_s(ref.ptr, "refs/remotes/test/master");
git_buf_free(&ref);
}