Skip to content

Commit

Permalink
Merge pull request #52 from Tyrael/fix-noop-test-execution
Browse files Browse the repository at this point in the history
fix: test directory path was missing the dir prefix
  • Loading branch information
slashben committed Dec 12, 2023
2 parents ef0db20 + 2ba84d4 commit 241f4a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/run-all-control-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ fi
result=0
# Run all control tests
for control in $(ls controls); do
if [[ -d $control ]]; then
if [[ -d controls/$control ]]; then
echo "=================================================="
echo "Running test $control"
echo "--------------------------------------------------"
Expand Down

0 comments on commit 241f4a8

Please sign in to comment.