diff --git a/scripts/test.sh b/scripts/test.sh index fa1ad92e65..72575dba7d 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -103,7 +103,7 @@ json_result="[" # Sort, filter, and generate JSON objects while read -r dir; do if ! is_excluded "$dir"; then - json_result+=$(generate_json "$dir") + json_result+=$(generate_json_new "$dir") json_result+="," fi done <<< "$(echo "$EXAMPLE_DIRECTORIES" | sort)" # Feed sorted directories into the loop