From cfbd4d0ff046d3cd9a58ee5872bd26c43bcb84f8 Mon Sep 17 00:00:00 2001 From: BroodjeAap Date: Sun, 8 Jan 2023 10:29:38 +0000 Subject: [PATCH] removed print statements in tests --- scraping_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/scraping_test.go b/scraping_test.go index d4bf3b9..5995460 100644 --- a/scraping_test.go +++ b/scraping_test.go @@ -1225,8 +1225,6 @@ end` if len(filter.Logs) > 0 { t.Errorf("Lua error: %s", filter.Logs) } - log.Println(test.Want) - log.Println(filter.Results) if (filter.Results != nil && test.Want != nil) && !reflect.DeepEqual(test.Want, filter.Results) { t.Errorf("Got %s, want %s", filter.Results, test.Want) }