push tests: deeply free the specs Don't just free the spec vector, also free the specs themselves.
diff --git a/tests/online/push.c b/tests/online/push.c
index 257da27..592372b 100644
--- a/tests/online/push.c
+++ b/tests/online/push.c
@@ -397,7 +397,7 @@ void test_online_push__initialize(void)
}
git_remote_disconnect(_remote);
- git_vector_free(&delete_specs);
+ git_vector_free_deep(&delete_specs);
/* Now that we've deleted everything, fetch from the remote */
memcpy(&fetch_opts.callbacks, &_record_cbs, sizeof(git_remote_callbacks));