From d2e10fdef64d9a5c9fe9708746a85980e456af52 Mon Sep 17 00:00:00 2001 From: Erik Kundt Date: Mon, 15 Sep 2025 13:12:06 +0200 Subject: [PATCH] cli/tests/commands: Clean up test `rad_patch` This removes the `rad issue` test examples from being used in the `fn rad_patch` test example execution. Removing it here is fine, since it is being executed on its own anyways. --- crates/radicle-cli/tests/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/radicle-cli/tests/commands.rs b/crates/radicle-cli/tests/commands.rs index c72c37f9..5a8b8f3a 100644 --- a/crates/radicle-cli/tests/commands.rs +++ b/crates/radicle-cli/tests/commands.rs @@ -815,7 +815,7 @@ fn rad_node() { #[test] fn rad_patch() { - Environment::alice(["rad-init", "rad-issue", "rad-patch"]); + Environment::alice(["rad-init", "rad-patch"]); } #[test]