Commit d1bcc1a8744343253df569ae4798302c1ff796e7

Vicent Martí 2013-03-06T03:05:10

Merge pull request #1392 from ethomson/push_test_fix remote push test fix

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/tests-clar/network/remote/remotes.c b/tests-clar/network/remote/remotes.c
index 42f090b..a5ff741 100644
--- a/tests-clar/network/remote/remotes.c
+++ b/tests-clar/network/remote/remotes.c
@@ -72,13 +72,14 @@ void test_network_remote_remotes__error_when_no_push_available(void)
 
 	/* Make sure that push is really not available */
 	t->push = NULL;
+	cl_git_pass(git_remote_set_transport(r, t));
+
 	cl_git_pass(git_remote_connect(r, GIT_DIRECTION_PUSH));
 	cl_git_pass(git_push_new(&p, r));
 	cl_git_pass(git_push_add_refspec(p, "refs/heads/master"));
 	cl_git_fail_with(git_push_finish(p), GIT_ERROR);
 
 	git_push_free(p);
-	t->free(t);
 	git_remote_free(r);
 }