From 37f6349b0190c020dbef9ff6ad37d225e57f02a5 Mon Sep 17 00:00:00 2001 From: Ivan Pozdeev Date: Fri, 7 May 2021 20:34:00 +0300 Subject: [PATCH] Make test independent of umask Only test the permission bit that we're setting --- plugins/python-build/test/installer.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python-build/test/installer.bats b/plugins/python-build/test/installer.bats index ebb158d6..dc04819a 100644 --- a/plugins/python-build/test/installer.bats +++ b/plugins/python-build/test/installer.bats @@ -57,5 +57,5 @@ OUT assert [ -e share/bananas/docs ] run ls -ld bin - assert_equal "r-x" "${output:4:3}" + assert_equal "-" "${output:5:1}" }