Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

Commit

Permalink
fix(test): test case
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuri-su committed May 6, 2020
1 parent 438169f commit eb8f7e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/dmctl_command/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function run() {
$PWD/bin/dmctl.test DEVEL > $WORK_DIR/help.log
help_msg=$(cat $WORK_DIR/help.log)
help_msg_cnt=$(echo "${help_msg}" | wc -l |xargs)
if [ "$help_msg_cnt" != 34 ]; then
if [ "$help_msg_cnt" != 35 ]; then
echo "dmctl case 1 help failed: $help_msg"
echo $help_msg_cnt
exit 1
Expand All @@ -24,7 +24,7 @@ function run() {
$PWD/bin/dmctl.test DEVEL --help > $WORK_DIR/help.log
help_msg=$(cat $WORK_DIR/help.log)
help_msg_cnt=$(echo "${help_msg}" | wc -l |xargs)
if [ "$help_msg_cnt" != 34 ]; then
if [ "$help_msg_cnt" != 35 ]; then
echo "dmctl case 2 help failed: $help_msg"
exit 1
fi
Expand Down

0 comments on commit eb8f7e1

Please sign in to comment.