Fixed tests/cli/rest.sh for checking accounts
This commit is contained in:
parent
dfae4ccdbd
commit
8a4e24925a
1
Makefile
1
Makefile
|
@ -38,6 +38,7 @@ test_cli: tests/cli/shunit2
|
|||
./tests/cli/roles.sh
|
||||
./tests/cli/counter.sh
|
||||
./tests/cli/restart.sh
|
||||
./tests/cli/rest.sh
|
||||
./tests/cli/ibc.sh
|
||||
|
||||
test_tutorial: docs/guide/shunit2
|
||||
|
|
|
@ -39,7 +39,7 @@ restAccount() {
|
|||
assertNotNull "line=${LINENO}, address required" "$1"
|
||||
ACCT=$(curl ${URL}/query/account/sigs:$1 2>/dev/null)
|
||||
if [ -n "$DEBUG" ]; then echo $ACCT; echo; fi
|
||||
assertEquals "line=${LINENO}, proper money" "$2" $(echo $ACCT | jq .coins[0].amount)
|
||||
assertEquals "line=${LINENO}, proper money" "$2" $(echo $ACCT | jq .data.coins[0].amount)
|
||||
return $?
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue