Skip to content

Commit 27f3072

Browse files
committed
Refactor test syntax
1 parent 7c9c0b8 commit 27f3072

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cmd/commands/commands_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ func TestFlagParsing(t *testing.T) {
594594
args: []string{
595595
"lncli", "sendmany",
596596
"--sat_per_vbyte", "40",
597-
"'{\"bc1qexample\": 500}'",
597+
`{"bc1qexample": 500}`,
598598
},
599599
},
600600
{
@@ -603,7 +603,7 @@ func TestFlagParsing(t *testing.T) {
603603
args: []string{
604604
"lncli", "sendmany",
605605
"--sat_per_vbyte", "-1",
606-
"'{\"bc1qexample\": 500}'",
606+
`{"bc1qexample": 500}`,
607607
},
608608
expectedErrMsg: "parse error",
609609
},

0 commit comments

Comments
 (0)