From e2b340a00756d167f8a90bc785781c51c7cb26d0 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Fri, 1 Aug 2025 10:10:45 -0400 Subject: [PATCH] fix test --- crates/paths/Cargo.toml | 3 +++ crates/worktree/Cargo.toml | 1 + 2 files changed, 4 insertions(+) diff --git a/crates/paths/Cargo.toml b/crates/paths/Cargo.toml index f6eadc5a21..44bb0953e2 100644 --- a/crates/paths/Cargo.toml +++ b/crates/paths/Cargo.toml @@ -8,6 +8,9 @@ license = "GPL-3.0-or-later" [lints] workspace = true +[features] +test-support = [] + [lib] path = "src/paths.rs" diff --git a/crates/worktree/Cargo.toml b/crates/worktree/Cargo.toml index db264fe3aa..507b95c00d 100644 --- a/crates/worktree/Cargo.toml +++ b/crates/worktree/Cargo.toml @@ -55,6 +55,7 @@ collections = { workspace = true, features = ["test-support"] } git2.workspace = true gpui = { workspace = true, features = ["test-support"] } http_client.workspace = true +paths = { workspace = true, features = ["test-support"] } pretty_assertions.workspace = true rand.workspace = true rpc = { workspace = true, features = ["test-support"] }