[#1141] morph/client: Use boolean type directly
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
230a5cd037
commit
f65898a354
2 changed files with 4 additions and 13 deletions
|
@ -34,13 +34,11 @@ func TestToStackParameter(t *testing.T) {
|
|||
},
|
||||
{
|
||||
value: false,
|
||||
expType: sc.IntegerType,
|
||||
expVal: int64(0),
|
||||
expType: sc.BoolType,
|
||||
},
|
||||
{
|
||||
value: true,
|
||||
expType: sc.IntegerType,
|
||||
expVal: int64(1),
|
||||
expType: sc.BoolType,
|
||||
},
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue