summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/tests/testsuite/git_auth.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/cargo/tests/testsuite/git_auth.rs')
-rw-r--r--src/tools/cargo/tests/testsuite/git_auth.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/tools/cargo/tests/testsuite/git_auth.rs b/src/tools/cargo/tests/testsuite/git_auth.rs
index b6e68fa3d..c79ae7ce0 100644
--- a/src/tools/cargo/tests/testsuite/git_auth.rs
+++ b/src/tools/cargo/tests/testsuite/git_auth.rs
@@ -105,11 +105,6 @@ fn setup_failed_auth_test() -> (SocketAddr, JoinHandle<()>, Arc<AtomicUsize>) {
// Tests that HTTP auth is offered from `credential.helper`.
#[cargo_test]
fn http_auth_offered() {
- // TODO(Seb): remove this once possible.
- if cargo_uses_gitoxide() {
- // Without the fixes in https://github.com/Byron/gitoxide/releases/tag/gix-v0.41.0 this test is flaky.
- return;
- }
let (addr, t, connections) = setup_failed_auth_test();
let p = project()
.file(
@@ -372,11 +367,6 @@ Caused by:
#[cargo_test]
fn instead_of_url_printed() {
- // TODO(Seb): remove this once possible.
- if cargo_uses_gitoxide() {
- // Without the fixes in https://github.com/Byron/gitoxide/releases/tag/gix-v0.41.0 this test is flaky.
- return;
- }
let (addr, t, _connections) = setup_failed_auth_test();
let config = paths::home().join(".gitconfig");
let mut config = git2::Config::open(&config).unwrap();