From 9be2a36a01960af0688d740fd0a047bd28b5b6a9 Mon Sep 17 00:00:00 2001 From: Oliver looney Date: Sat, 27 Jan 2024 14:38:09 +0000 Subject: [PATCH] fixed system wide config tests failing --- tests/system_wide_config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system_wide_config.rs b/tests/system_wide_config.rs index fbb3b259..66c96c06 100644 --- a/tests/system_wide_config.rs +++ b/tests/system_wide_config.rs @@ -9,7 +9,7 @@ use utils::command::bat_with_config; #[ignore] fn use_systemwide_config() { bat_with_config().arg("test.txt").assert().success().stdout( - predicate::eq("\u{1b}]0;bat: test.txt\x07dummy-pager-from-system-config\n").normalize(), + predicate::eq("dummy-pager-from-system-config\n").normalize(), ); } @@ -23,5 +23,5 @@ fn config_overrides_system_config() { .arg("test.txt") .assert() .success() - .stdout(predicate::eq("\u{1b}]0;bat: test.txt\x07dummy-pager-from-config\n").normalize()); + .stdout(predicate::eq("dummy-pager-from-config\n").normalize()); }