From 90949f7fdfc2f74ebfad264889b9b2f77511fa95 Mon Sep 17 00:00:00 2001 From: Tw93 Date: Wed, 18 Mar 2026 14:55:26 +0800 Subject: [PATCH] test(purge): fix glob quoting in path assertion --- tests/purge.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/purge.bats b/tests/purge.bats index 3e0e582..a118059 100644 --- a/tests/purge.bats +++ b/tests/purge.bats @@ -139,7 +139,7 @@ format_purge_target_path "$HOME/www/app/node_modules" EOF [ "$status" -eq 0 ] - [[ "$output" == "~/www/app/node_modules" ]] + [[ "$output" == \~/www/app/node_modules ]] } @test "filter_nested_artifacts: removes nested node_modules" {