diff --git a/Cargo.toml b/Cargo.toml index b6b05d5..1553ddb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -77,4 +77,3 @@ tokio = { version = "1.37" } # Testing assert2 = "0.3" pretty_assertions = "1.4" -test-log = { version = "0.2", features = ["trace"] } diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 459c8ed..5f9d4b9 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -59,7 +59,6 @@ derive_more = { workspace = true } # # Testing assert2 = { workspace = true } pretty_assertions = { workspace = true } -# test-log = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/git/Cargo.toml b/crates/git/Cargo.toml index 94a30e6..71b3e01 100644 --- a/crates/git/Cargo.toml +++ b/crates/git/Cargo.toml @@ -61,7 +61,6 @@ derive_more = { workspace = true } # # Testing # assert2 = { workspace = true } # pretty_assertions = { workspace = true } -# test-log = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/server/Cargo.toml b/crates/server/Cargo.toml index 098fe5f..bbd5598 100644 --- a/crates/server/Cargo.toml +++ b/crates/server/Cargo.toml @@ -62,7 +62,6 @@ tokio = { workspace = true } # Testing assert2 = { workspace = true } pretty_assertions = { workspace = true } -test-log = { workspace = true } [lints.clippy] nursery = { level = "warn", priority = -1 } diff --git a/crates/server/src/gitforge/tests/forgejo.rs b/crates/server/src/gitforge/tests/forgejo.rs index 9314445..ebd77ca 100644 --- a/crates/server/src/gitforge/tests/forgejo.rs +++ b/crates/server/src/gitforge/tests/forgejo.rs @@ -25,7 +25,7 @@ fn test_name() { assert_eq!(forge.name(), "forgejo"); } -#[test_log::test(tokio::test)] +#[tokio::test] async fn test_branches_get() { let Ok(fs) = kxio::fs::temp() else { panic!("fs")