Skip to content

Commit

Permalink
Merge pull request #896 from koralowiec/fix/test-library-script-incre…
Browse files Browse the repository at this point in the history
…ment

fix: change increment syntax in test library script
  • Loading branch information
samruddhikhandale committed Sep 16, 2024
2 parents 95f0ce4 + ccf60bd commit 9ba1fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spec-node/featuresCLI/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ checkMultiple() {
shift; MINIMUMPASSED=$1
shift; EXPRESSION="$1"
while [ "$EXPRESSION" != "" ]; do
if $EXPRESSION; then ((PASSED++)); fi
if $EXPRESSION; then ((PASSED+=1)); fi
shift; EXPRESSION=$1
done
if [ $PASSED -ge $MINIMUMPASSED ]; then
Expand Down

0 comments on commit 9ba1fda

Please sign in to comment.