Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
arq5x committed Sep 3, 2019
1 parent 6a5981a commit 04dd739
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/bamtofastq/test-bamtofastq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ FAILURES=0;
check()
{
if diff $1 $2; then
echo ok
echo ok
else
FAILURES=$(expr $FAILURES + 1);
echo fail
Expand Down
13 changes: 6 additions & 7 deletions test/complement/test-complement.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ FAILURES=0;

check()
{
if diff $1 $2; then
echo ok

else
FAILURES=$(expr $FAILURES + 1);
echo fail
fi
if diff $1 $2; then
echo ok
else
FAILURES=$(expr $FAILURES + 1);
echo fail
fi
}


Expand Down
4 changes: 2 additions & 2 deletions test/intersect/test-intersect.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ FAILURES=0;
check()
{
if diff $1 $2; then
echo ok
echo ok
else
FAILURES=$(expr $FAILURES + 1);
FAILURES=$(expr $FAILURES + 1);
echo fail
fi
}
Expand Down

0 comments on commit 04dd739

Please sign in to comment.