*: remove redundant return statements

Found by gosimple via golangci-lint.
This commit is contained in:
Roman Khimov 2021-05-12 18:24:16 +03:00
parent 8322607fd2
commit ad8ffee0ab
2 changed files with 0 additions and 2 deletions

View file

@ -99,7 +99,6 @@ func TestNEP17Balance(t *testing.T) {
t.Run("Bad wallet", func(t *testing.T) {
e.RunWithError(t, append(cmdbalance, "--wallet", "/dev/null")...)
})
return
}
func TestNEP17Transfer(t *testing.T) {

View file

@ -339,7 +339,6 @@ func TestBooleanExprs(t *testing.T) {
t.Run(triple[i].s, getBoolExprTestFunc(triple[i].val, triple[i].s))
}
})
return
}
func TestShortCircuit(t *testing.T) {