From 80670348f96d195a7f7ccb7722856d567d5b1b96 Mon Sep 17 00:00:00 2001 From: Stefano Lombardo Date: Wed, 22 May 2024 20:00:54 +0200 Subject: [PATCH] fix: small typo --- .github/workflows/webserv.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/webserv.yml b/.github/workflows/webserv.yml index 9a0ef30..ef5cd1f 100644 --- a/.github/workflows/webserv.yml +++ b/.github/workflows/webserv.yml @@ -104,10 +104,10 @@ jobs: echo "❌ Tests failed. Exiting with status code $exit_code." exit $exit_code fi - - name: Make parallel_cgi/durations_ts.sh executable - run: chmod +x test/parallel_cgi/durations_ts.sh + - name: Make parallel_cgi/duration_ts.sh executable + run: chmod +x test/parallel_cgi/duration_ts.sh - name: Run parallel CGIs Test - run: ./tests/parallel_cgi/durations_ts.sh + run: ./tests/parallel_cgi/duration_ts.sh exit_code=$? if [ $exit_code -ne 0 ]; then echo "❌ Parallel CGI tests failed. Exiting with status code $exit_code."