From 163572ea97fc5a59c28c7063e74fc0d74632aa40 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 18 Jul 2023 16:04:51 -0700 Subject: [PATCH] lib/logstorage: `go fmt` after a8000b74c59ecf5582958be06ee1a217af1f9d67 --- lib/logstorage/parser_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/logstorage/parser_test.go b/lib/logstorage/parser_test.go index d1a9e4a9d..ca510a785 100644 --- a/lib/logstorage/parser_test.go +++ b/lib/logstorage/parser_test.go @@ -647,9 +647,9 @@ func TestParseQuerySuccess(t *testing.T) { f(`_time:(2023-01-05, 2023-01-06] OFFset 5m`, `_time:(2023-01-05,2023-01-06] offset 5m`) f(`_time:(2023-01-05, 2023-01-06) OFFset 5m`, `_time:(2023-01-05,2023-01-06) offset 5m`) f(`_time:1h offset 5m`, `_time:1h offset 5m`) - f(`_time:1h "offSet"`, `_time:1h "offSet"`) // "offset" is a search word, since it is quoted + f(`_time:1h "offSet"`, `_time:1h "offSet"`) // "offset" is a search word, since it is quoted f(`_time:1h (Offset)`, `_time:1h "Offset"`) // "offset" is a search word, since it is in parens - f(`_time:1h "and"`, `_time:1h "and"`) // "and" is a search word, since it is quoted + f(`_time:1h "and"`, `_time:1h "and"`) // "and" is a search word, since it is quoted // reserved keywords f("and", `"and"`)