From 76274a2130db36a6754f0bf262daac63f2afbd1e Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 7 May 2025 09:40:08 -0500 Subject: [PATCH] tests/man: index.bt -> index.db Looks like the generated cache is now using index.db --- tests/modules/programs/man/apropos.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tests/modules/programs/man/apropos.nix b/tests/modules/programs/man/apropos.nix index ee30f8f8c..312497c37 100644 --- a/tests/modules/programs/man/apropos.nix +++ b/tests/modules/programs/man/apropos.nix @@ -7,12 +7,8 @@ nmt.script = '' assertFileExists home-files/.manpath - CACHE_DIR=$(cat $TESTED/home-files/.manpath | cut --delimiter=' ' --fields=3) - - if [[ ! -f "$CACHE_DIR/index.bt" ]]; then - fail "Expected man cache files to exist (in $CACHE_DIR) but they were not found." - fi + assertFileExists "$CACHE_DIR/index.db" ''; }; }