aboutsummaryrefslogtreecommitdiffstats
path: root/ccl_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ccl_test.go')
-rw-r--r--ccl_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ccl_test.go b/ccl_test.go
index e7405f8..8aaca98 100644
--- a/ccl_test.go
+++ b/ccl_test.go
@@ -718,7 +718,7 @@ func BenchmarkLex(b *testing.B) {
for b.Loop() {
l := &lexer{data: msg}
for {
- _, err := l.next()
+ _, _, err := l.next()
if err != nil {
if err == errEOF {
break