From 1d78af2f7a035b6e780f36829adb20d125febd6d Mon Sep 17 00:00:00 2001 From: miguel Date: Thu, 15 Dec 2022 18:11:33 +0000 Subject: [PATCH] fix(hard-perm): fixing the test --- sh/tests/hard-perm_test.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sh/tests/hard-perm_test.sh b/sh/tests/hard-perm_test.sh index 53f89b26..15ecf67f 100755 --- a/sh/tests/hard-perm_test.sh +++ b/sh/tests/hard-perm_test.sh @@ -6,10 +6,11 @@ IFS=' ' script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd) -challenge() { - submitted=$(ls -l "$1" && bash "$script_dirS"/student/hard-perm.sh) - expected=$(ls -l "$1" && bash "$script_dirS"/solutions/hard-perm.sh) +chmod 303 hard-perm/* +challenge() { + submitted=$(bash "$script_dirS"/student/hard-perm.sh && ls -l "$1") + expected=$(bash "$script_dirS"/solutions/hard-perm.sh && ls -l "$1") diff <(echo "$submitted") <(echo "$expected") }