Skip to content

Commit

Permalink
feat(yegor256#228): csv head 10 now
Browse files Browse the repository at this point in the history
  • Loading branch information
h1alexbel committed Jul 1, 2024
1 parent 85a0af1 commit c5ed274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/steps/test-discover-repos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ tex=${TARGET}/foo.tex
test -e "${csv}"
test -s "${tex}"
test "$(wc -l < "${csv}" | xargs)" = '4'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '9'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '10'
} > "${stdout}" 2>&1
echo "👍🏻 Small repositories discovery test is succeed"

Expand All @@ -50,6 +50,6 @@ echo "👍🏻 Small repositories discovery test is succeed"
test -e "${csv}"
test -s "${tex}"
test "$(wc -l < "${csv}" | xargs)" = '36'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '9'
test "$(head -1 "${csv}" | tr "," "\n" | wc -l | xargs)" = '10'
} > "${stdout}" 2>&1
echo "👍🏻 Medium repositories discovery test is succeed"

0 comments on commit c5ed274

Please sign in to comment.