From df1b00c454d1d943b5745e0b4ce6d1c4a1cd1b9d Mon Sep 17 00:00:00 2001 From: miguel Date: Thu, 22 Dec 2022 16:22:10 +0000 Subject: [PATCH] fix(easy-perms): fix test to check only the perms --- sh/tests/easy-perm_test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/tests/easy-perm_test.sh b/sh/tests/easy-perm_test.sh index c2a2413bd..77596ba75 100755 --- a/sh/tests/easy-perm_test.sh +++ b/sh/tests/easy-perm_test.sh @@ -9,8 +9,8 @@ script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd) chmod 303 easy-perm/* challenge() { - submitted=$(bash "$script_dirS"/student/easy-perm.sh && ls -l "$1") - expected=$(bash "$script_dirS"/solutions/easy-perm.sh && ls -l "$1") + submitted=$(bash "$script_dirS"/student/easy-perm.sh && ls -l "$1" | awk '{print $1}') + expected=$(bash "$script_dirS"/solutions/easy-perm.sh && ls -l "$1" | awk '{print $1}') diff <(echo "$submitted") <(echo "$expected") }