diff options
Diffstat (limited to 'statement_test.go')
| -rw-r--r-- | statement_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/statement_test.go b/statement_test.go index b925c7b..50feccc 100644 --- a/statement_test.go +++ b/statement_test.go @@ -33,7 +33,7 @@ func TestParseStatement(t *testing.T) { raw: []byte(`#get! a\ b c`), exp: &Statement{ kind: statementKindSudoGet, - cmd: `a b`, + cmd: `a b`, args: []string{ "c", }, @@ -45,7 +45,7 @@ func TestParseStatement(t *testing.T) { kind: statementKindSudoPut, cmd: `a`, args: []string{"bc"}, - raw: []byte(` a bc`), + raw: []byte(` a bc`), }, }, { raw: []byte(`#require:\ a\ `), |
