Browse Source

fix(hard-perms): fix test to check only the perms

DEV-4049-remove-alcohol-terminology
miguel 2 years ago committed by MSilva95
parent
commit
526f60501c
  1. 4
      sh/tests/hard-perm_test.sh

4
sh/tests/hard-perm_test.sh

@ -9,8 +9,8 @@ script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd)
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")
submitted=$(bash "$script_dirS"/student/hard-perm.sh && ls -l "$1" | awk '{print $1}')
expected=$(bash "$script_dirS"/solutions/hard-perm.sh && ls -l "$1" | awk '{print $1}')
diff <(echo "$submitted") <(echo "$expected")
}

Loading…
Cancel
Save