From ee62421928fa886e6296b304f0cfba8a2e7b1003 Mon Sep 17 00:00:00 2001 From: Daniel Szoke <7881302+szokeasaurusrex@users.noreply.github.com> Date: Tue, 26 Nov 2024 07:11:14 -0500 Subject: [PATCH] ref(test): Remove redundant line (#2266) This line is redundant, since `env::set_all` already handles setting the auth token. --- tests/integration/debug_files/upload.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/integration/debug_files/upload.rs b/tests/integration/debug_files/upload.rs index c169e0f938..650eda737f 100644 --- a/tests/integration/debug_files/upload.rs +++ b/tests/integration/debug_files/upload.rs @@ -181,11 +181,6 @@ fn ensure_correct_assemble_call() { command.env(k, v.as_ref()); }); - command.env( - "SENTRY_AUTH_TOKEN", - "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef", - ); - let command_result = command.assert(); // First assert the mock was called as expected, then that the command was successful.