diff options
| author | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-07-03 11:33:23 +0900 |
|---|---|---|
| committer | Fumitoshi Ukai <fumitoshi.ukai@gmail.com> | 2015-07-03 11:33:23 +0900 |
| commit | e9aa3800b302e7123453fe52a5293de08aef72f0 (patch) | |
| tree | 42d02d82d90528e2061ff710ba95281bbc4a9497 /expr_test.go | |
| parent | 914fed38629cc1efd34edab8f88810a36349f0f5 (diff) | |
fix unmatched_paren.mk
Diffstat (limited to 'expr_test.go')
| -rw-r--r-- | expr_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/expr_test.go b/expr_test.go index 7a38cf5..ad51a89 100644 --- a/expr_test.go +++ b/expr_test.go @@ -290,7 +290,7 @@ func TestParseExpr(t *testing.T) { }, }, } { - val, _, err := parseExpr([]byte(tc.in), nil, true) + val, _, err := parseExpr([]byte(tc.in), nil, parseOp{alloc: true}) if tc.isErr { if err == nil { t.Errorf(`parseExpr(%q)=_, _, nil; want error`, tc.in) |
