Commit fe4efe2e36a23e3647dc205ffcdc2452823bb0b1

Edward Thomson 2019-12-03T10:17:30

tests: test that clone returns 4321 This conditional was backwards. We should instead test that clone returns 4321, not that 4321 returns clone.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/tests/online/clone.c b/tests/online/clone.c
index cbe0ea7..caed18c 100644
--- a/tests/online/clone.c
+++ b/tests/online/clone.c
@@ -455,8 +455,8 @@ void test_online_clone__can_cancel(void)
 {
 	g_options.fetch_opts.callbacks.transfer_progress = cancel_at_half;
 
-	cl_git_fail_with(
-		git_clone(&g_repo, LIVE_REPO_URL, "./foo", &g_options), 4321);
+	cl_git_fail_with(4321,
+		git_clone(&g_repo, LIVE_REPO_URL, "./foo", &g_options));
 }
 
 static int cred_cb(git_cred **cred, const char *url, const char *user_from_url,