diff options
Diffstat (limited to 'server/tests/integration_test.rs')
| -rw-r--r-- | server/tests/integration_test.rs | 4 |
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"); |
