*: remove redundant return
statements
Found by gosimple via golangci-lint.
This commit is contained in:
parent
8322607fd2
commit
ad8ffee0ab
2 changed files with 0 additions and 2 deletions
|
@ -99,7 +99,6 @@ func TestNEP17Balance(t *testing.T) {
|
||||||
t.Run("Bad wallet", func(t *testing.T) {
|
t.Run("Bad wallet", func(t *testing.T) {
|
||||||
e.RunWithError(t, append(cmdbalance, "--wallet", "/dev/null")...)
|
e.RunWithError(t, append(cmdbalance, "--wallet", "/dev/null")...)
|
||||||
})
|
})
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestNEP17Transfer(t *testing.T) {
|
func TestNEP17Transfer(t *testing.T) {
|
||||||
|
|
|
@ -339,7 +339,6 @@ func TestBooleanExprs(t *testing.T) {
|
||||||
t.Run(triple[i].s, getBoolExprTestFunc(triple[i].val, triple[i].s))
|
t.Run(triple[i].s, getBoolExprTestFunc(triple[i].val, triple[i].s))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestShortCircuit(t *testing.T) {
|
func TestShortCircuit(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue