Test another bad URL
diff --git a/tests-clar/clone/nonetwork.c b/tests-clar/clone/nonetwork.c
index 90e1e64..a286e2a 100644
--- a/tests-clar/clone/nonetwork.c
+++ b/tests-clar/clone/nonetwork.c
@@ -58,7 +58,9 @@ void test_clone_nonetwork__bad_urls(void)
cl_git_fail(git_clone(&g_repo, "git://example.com:asdf", "./foo", &g_options));
cl_git_fail(git_clone(&g_repo, "https://example.com:asdf/foo", "./foo", &g_options));
cl_git_fail(git_clone(&g_repo, "git://github.com/git://github.com/foo/bar.git.git",
- "./bar", &g_options));
+ "./foo", &g_options));
+ cl_git_fail(git_clone(&g_repo, "arrbee:my/bad:password@github.com:1111/strange:words.git",
+ "./foo", &g_options));
}
void test_clone_nonetwork__do_not_clean_existing_directory(void)