From 0af1b9f1617bdc014892277f8f4fbf769aaa7026 Mon Sep 17 00:00:00 2001 From: eslopfer Date: Mon, 9 Jan 2023 14:04:50 +0000 Subject: [PATCH] test(file-checker): fix wrong file to test and wrong variables --- sh/tests/file-checker_test.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/sh/tests/file-checker_test.sh b/sh/tests/file-checker_test.sh index f5973e4f..2d79933c 100755 --- a/sh/tests/file-checker_test.sh +++ b/sh/tests/file-checker_test.sh @@ -6,13 +6,12 @@ IFS=' script_dirS=$(cd -P "$(dirname "$BASH_SOURCE")" &>/dev/null && pwd) -submitted=$(bash "$script_dirS"/student/plus.sh $1) -expected=$(bash "$script_dirS"/solutions/plus.sh $1) +submitted=$(bash "$script_dirS"/student/file-checker.sh "$script_dirS"/student/hello-devops.sh) +expected=$(bash "$script_dirS"/solutions/file-checker.sh "$script_dirS"/student/hello-devops.sh) # check that test command was not used -grep -q "test" $1 -if [ $? -eq 0 ] +if grep -q "test" "$script_dirS"/student/file-checker.sh then echo "The 'test' command is not allowed in this exercise" exit 1