summaryrefslogtreecommitdiff
path: root/server/tests/integration_test.rs
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-02-20 22:53:27 +0100
committerJoel Klinghed <the_jk@spawned.biz>2025-02-20 22:53:27 +0100
commite940d84f69e3fd627731d5d3f698d6f838797862 (patch)
tree779eefcde993e22c0a69c18a3cb6e1cb9d17aad3 /server/tests/integration_test.rs
parentbf025b4977543a371df9dbdddfe9cc2f02f2a8d0 (diff)
WIPWIP
Diffstat (limited to 'server/tests/integration_test.rs')
-rw-r--r--server/tests/integration_test.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/server/tests/integration_test.rs b/server/tests/integration_test.rs
index 242655b..d8dc829 100644
--- a/server/tests/integration_test.rs
+++ b/server/tests/integration_test.rs
@@ -1,3 +1,4 @@
+use std::path::PathBuf;
use std::thread::sleep;
use std::time::Duration;
use test_context::test_context;
@@ -76,7 +77,8 @@ async fn test_sanity(ctx: &mut common::DockerComposeContext) {
.expect("user02 ssh_config setup");
let remote_git = String::from(ctx.remote_git());
- common::create_project(ctx, &mut client1, "fake", &remote_git)
+ let remote_git_key = PathBuf::from(ctx.remote_git_key());
+ common::create_project(ctx, &mut client1, "fake", &remote_git, &remote_git_key)
.await
.expect("create fake project");