Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ebuchman committed Oct 12, 2017
1 parent a420336 commit 098d177
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion examples/basecoin/tests/cli/rpc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ test01GetInsecure() {
INFO=$(${CLIENT_EXE} rpc info)
assertTrue "line=${LINENO}, get info" "$?"
DATA=$(echo $INFO | jq .response.data)
assertEquals "line=${LINENO}, basecoin info" '"Basecoin v0.7.0"' "$DATA"
assertEquals "line=${LINENO}, basecoin info" '"Basecoin v0.7.1"' "$DATA"
}

test02GetSecure() {
Expand Down
4 changes: 4 additions & 0 deletions version/version.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
//nolint
package version

// when updating these,
// remember to also update examples/basecoin/tests/cli/rpc.sh
// ... ugh ....

const Maj = "0"
const Min = "7"
const Fix = "1"
Expand Down

0 comments on commit 098d177

Please sign in to comment.