Skip to content

Commit

Permalink
Fix package_check find call: mindepth maxdepth should be before name
Browse files Browse the repository at this point in the history
  • Loading branch information
Félix Piédallu committed Oct 28, 2024
1 parent 01afe49 commit 54abb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tests_coordination.sh
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ start_test() {
&& current_test_serie="($current_test_serie) " \
|| current_test_serie=""

total_number_of_test=$(find "$TEST_CONTEXT/tests" -name "*.json" -mindepth 1 -maxdepth 1 | wc -l)
total_number_of_test=$(find "$TEST_CONTEXT/tests" -mindepth 1 -maxdepth 1 -name "*.json" | wc -l)

log_title " [Test $current_test_number/$total_number_of_test] $current_test_serie$1"
}
Expand Down

0 comments on commit 54abb7b

Please sign in to comment.