From 0f54e01ef395279af82b7b5dc7e344cc0374e4da Mon Sep 17 00:00:00 2001 From: Celestino Amoroso Date: Mon, 10 Jun 2024 20:36:03 +0200 Subject: [PATCH] t_scanner_test.go: Test nr 25 changed because now single-quotes can enclose strings --- t_scanner_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t_scanner_test.go b/t_scanner_test.go index 643f495..0507db2 100644 --- a/t_scanner_test.go +++ b/t_scanner_test.go @@ -45,7 +45,7 @@ func TestScanner(t *testing.T) { /* 22 */ {"@", SymAt, nil, nil}, /* 23 */ {`#`, SymHash, nil, nil}, /* 24 */ {`%`, SymPercent, nil, nil}, - /* 25 */ {`'`, SymQuote, nil, nil}, + /* 25 */ {`\'`, SymQuote, nil, nil}, /* 26 */ {`\"`, SymDoubleQuote, nil, nil}, /* 27 */ {`_`, SymUndescore, nil, nil}, /* 28 */ {`<>`, SymLessGreater, nil, nil},