diff options
| author | Shulhan <ms@kilabit.info> | 2022-06-20 23:21:48 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-06-20 23:21:48 +0700 |
| commit | 3a98bd42405185ac9150426e7fe5d97a3d7dc93b (patch) | |
| tree | cdad9f8b1da4ae065256505529c14f49e6d21ac6 /statement_test.go | |
| parent | 8b17fc3d05871eda440cd04df4e8124b394a18e5 (diff) | |
| download | awwan-3a98bd42405185ac9150426e7fe5d97a3d7dc93b.tar.xz | |
all: reformat all go files using the next gofmt
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\ `), |
