summaryrefslogtreecommitdiff
path: root/server/common/src/tests.rs
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-06-04 00:11:41 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-06-04 00:11:41 +0200
commita84d3cb7e9659b57ad3bbca6cc894a46fbf741fd (patch)
tree9a032c6e6c716436084f346790a7901a09b67e23 /server/common/src/tests.rs
parentcd971e758ba7669b94ea3d1d3c2bf2376550820f (diff)
Make integration actually work
Add logs Add remote keys for each user
Diffstat (limited to 'server/common/src/tests.rs')
-rw-r--r--server/common/src/tests.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/common/src/tests.rs b/server/common/src/tests.rs
index 41f44fe..5a02119 100644
--- a/server/common/src/tests.rs
+++ b/server/common/src/tests.rs
@@ -59,6 +59,7 @@ async fn git_setup(bare: bool) -> git::Repository {
None::<String>,
None::<String>,
None::<PathBuf>,
+ None::<PathBuf>,
);
assert_eq!(repo.remote(), None);
assert_eq!(repo.project_id(), None);
@@ -212,6 +213,7 @@ async fn git_fetch(bare: bool) -> git::Repository {
Some(remote.as_str()),
None::<String>,
None::<PathBuf>,
+ None::<PathBuf>,
);
assert_eq!(repo.remote(), Some(remote.as_str()));
repo.setup().await.unwrap();