Merge pull request #2086 from ethomson/fixup

Don't strcmp a git_buf, strcmp its char *
This commit is contained in:
Vicent Marti 2014-01-29 12:57:42 -08:00
commit 66af84494c

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);
}