From 54de3d127026baade5b6829e2d315f57fdf0d09b Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 18 Aug 2022 02:06:00 -0400 Subject: [PATCH] Fixed test columns and widths --- lexer/lexer_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lexer/lexer_test.go b/lexer/lexer_test.go index 2defa29..fe700c9 100644 --- a/lexer/lexer_test.go +++ b/lexer/lexer_test.go @@ -235,13 +235,13 @@ func TestTokenizeErr (test *testing.T) { "../tests/lexer/error/excessDataRune.arf", infoerr.ErrorKindError, "excess data in rune literal", - 1, 8, 1, + 1, 1, 7, test) compareErr ( "../tests/lexer/error/unknownEscape.arf", infoerr.ErrorKindError, "unknown escape character g", - 1, 1, 7, + 1, 2, 1, test) }