Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
czpmango committed Dec 23, 2021
1 parent 0b034a6 commit 1c4fd4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1011,14 +1011,14 @@ func TestExecuteWithParameter(t *testing.T) {
t.Fatalf(err.Error())
return
}
node, err := valWrap.AsNode()
node, err := valWrap.AsBool()
if err != nil {
t.Fatalf(err.Error())
return
}
assert.Equal(t,
"true",
node.String())
true,
node)
}
// Complex result
{
Expand Down

0 comments on commit 1c4fd4d

Please sign in to comment.