Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Npaintrobo committed Jan 5, 2024
1 parent 733d110 commit ede3def
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ res=0
{
sleep 20
# Parrot-log
cat /tmp/mypkg.log | grep 'aiueo' || ng ${LINENO}
cat /tmp/mypkg.log | grep '123456789' || ng ${LINENO}
cat /tmp/mypkg.log | grep 'a1b2c3d4e5' || ng ${LINENO}
(cat /tmp/mypkg.log | grep 'aiueo' || ng ${LINENO})
(cat /tmp/mypkg.log | grep '123456789' || ng ${LINENO})
(cat /tmp/mypkg.log | grep 'a1b2c3d4e5' || ng ${LINENO})
}
echo ""
[ "$res" = 0 ] && echo "OK"
Expand Down

0 comments on commit ede3def

Please sign in to comment.