From 6d1d5e4eba2a50efeb14d2292072d7c367560d65 Mon Sep 17 00:00:00 2001 From: withsoull Date: Tue, 24 Dec 2024 10:14:27 +0300 Subject: [PATCH] fixed a typo --- tests/images/run_features_tests_for_5.7.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/images/run_features_tests_for_5.7.sh b/tests/images/run_features_tests_for_5.7.sh index 662e164..07e0f71 100755 --- a/tests/images/run_features_tests_for_5.7.sh +++ b/tests/images/run_features_tests_for_5.7.sh @@ -1,6 +1,6 @@ #!/bin/bash -for file in `find /tests/features/ -name "*.feature" -not -name "*8.0*"`; do +for file in `find ./tests/features/ -name "*.feature" -not -name "*8.0*"`; do filename=$(basename "$file") GODOG_FEATURE=$filename make test done