From bd4444fbddd3d903ca5a8c05d9797e5ff8387e85 Mon Sep 17 00:00:00 2001 From: Arlo Siemsen Date: Tue, 29 Aug 2023 11:34:29 -0500 Subject: [PATCH] chore: remove unstable-options for logout --- tests/testsuite/logout.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/testsuite/logout.rs b/tests/testsuite/logout.rs index 7b5e10de2bf..9b4476f2a1c 100644 --- a/tests/testsuite/logout.rs +++ b/tests/testsuite/logout.rs @@ -83,8 +83,7 @@ fn default_registry_configured() { check_token(Some("dummy-token"), Some("dummy-registry")); check_token(Some("crates-io-token"), None); - cargo_process("logout -Zunstable-options") - .masquerade_as_nightly_cargo(&["cargo-logout"]) + cargo_process("logout") .with_stderr( "\ [LOGOUT] token for `dummy-registry` has been removed from local storage @@ -97,8 +96,7 @@ fn default_registry_configured() { check_token(None, Some("dummy-registry")); check_token(Some("crates-io-token"), None); - cargo_process("logout -Zunstable-options") - .masquerade_as_nightly_cargo(&["cargo-logout"]) + cargo_process("logout") .with_stderr("[LOGOUT] not currently logged in to `dummy-registry`") .run(); }