Skip to content

Commit

Permalink
adapt exeptected
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Marr <[email protected]>
  • Loading branch information
smarr committed Jan 26, 2025
1 parent e009838 commit fd428db
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,10 @@ jobs:
exit 1
fi
cat test.data | wc -l
if [ "$(cat test.data | grep total | wc -l )" -ne "19" ]; then
echo "test.data has wrong number of lines"
EXPECTED=169
LINES=$(cat test.data | grep total | wc -l)
if [ "$LINES" -ne "$EXPECTED" ]; then
echo "test.data has unexpected number of lines: $LINES"
echo "expected: $EXPECTED"
exit 1
fi

0 comments on commit fd428db

Please sign in to comment.