From c283c38add8d2b0e8359d8b03c064a188a43d6e0 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 28 Nov 2025 04:35:03 +0000 Subject: fix cargo test --- tests/cors.rs | 1 - tests/git_clone.rs | 1 - tests/push_authorization.rs | 1 - tests/repository_creation.rs | 2 +- 4 files changed, 1 insertion(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/cors.rs b/tests/cors.rs index addcb1d..a27c145 100644 --- a/tests/cors.rs +++ b/tests/cors.rs @@ -68,7 +68,6 @@ macro_rules! isolated_cors_test_with_repo { let result = CorsTests::$test_name( &client, - relay.git_data_dir(), &relay.domain(), ) .await; diff --git a/tests/git_clone.rs b/tests/git_clone.rs index c6be3f6..ffb04a3 100644 --- a/tests/git_clone.rs +++ b/tests/git_clone.rs @@ -44,7 +44,6 @@ macro_rules! isolated_test { let result = GitCloneTests::$test_name( &client, - relay.git_data_dir(), &relay.domain(), ) .await; diff --git a/tests/push_authorization.rs b/tests/push_authorization.rs index 0a9ffb9..1114782 100644 --- a/tests/push_authorization.rs +++ b/tests/push_authorization.rs @@ -45,7 +45,6 @@ macro_rules! isolated_push_test { let result = PushAuthorizationTests::$test_name( &client, - relay.git_data_dir(), &relay.domain() ).await; diff --git a/tests/repository_creation.rs b/tests/repository_creation.rs index 87a7a0c..301203b 100644 --- a/tests/repository_creation.rs +++ b/tests/repository_creation.rs @@ -43,7 +43,7 @@ macro_rules! isolated_test { .await .expect("Failed to create audit client"); - let result = RepositoryCreationTests::$test_name(&client, relay.git_data_dir()).await; + let result = RepositoryCreationTests::$test_name(&client, &relay.domain()).await; relay.stop().await; -- cgit v1.2.3