From 5f576f1ecf0f431370a77abe04a7946c192529da Mon Sep 17 00:00:00 2001 From: sharkdp Date: Sun, 4 Nov 2018 10:50:28 +0100 Subject: [PATCH] Remove all relevant environment variables during testing --- tests/integration_tests.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration_tests.rs b/tests/integration_tests.rs index c5a67450..28761188 100644 --- a/tests/integration_tests.rs +++ b/tests/integration_tests.rs @@ -9,6 +9,9 @@ fn bat_with_config() -> Command { cmd.env_remove("PAGER"); cmd.env_remove("BAT_PAGER"); cmd.env_remove("BAT_CONFIG_PATH"); + cmd.env_remove("BAT_STYLE"); + cmd.env_remove("BAT_THEME"); + cmd.env_remove("BAT_TABS"); cmd }