aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2015-03-23 01:06:12 +0100
committerDimitri Sokolyuk <demon@dim13.org>2015-03-23 01:06:12 +0100
commit19f1a104f5e4e3b04914183c76a2dc70ba03d8d1 (patch)
treeb688d70204fbde16356d899e8036bd671ea2a581
parent9673a0066bc18e7a03e0bb71c30128995d51e099 (diff)
Partial fix
-rw-r--r--lexer_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexer_test.go b/lexer_test.go
index 27cdfed..b736c14 100644
--- a/lexer_test.go
+++ b/lexer_test.go
@@ -11,7 +11,7 @@ func testInput(t *testing.T, ty int, s ...string) {
input = input[1 : len(input)-1]
}
if typ != ty || yy.sval != input {
- t.Error("expeced", input, "got", s)
+ t.Error("expeced", input, "got", yy.sval)
}
}
}