diff --git a/matchers/parse/parse.go b/matchers/parse/parse.go index cacff0a1ff..b1b4120195 100644 --- a/matchers/parse/parse.go +++ b/matchers/parse/parse.go @@ -249,9 +249,8 @@ func (p *Parser) parseComma(l *Lexer) (parseFunc, error) { } if tok.Kind == TokenCloseBrace { return p.parseCloseBrace, nil - } else { - return p.parseMatcher, nil } + return p.parseMatcher, nil } func (p *Parser) parseEOF(l *Lexer) (parseFunc, error) {