From 358c0a2884f88842659b0db603d8b52c2128ba2c Mon Sep 17 00:00:00 2001 From: azimut Date: Wed, 26 Apr 2023 19:39:45 -0300 Subject: [PATCH] fix hackernews fetch --- internal/reddit/fetch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/reddit/fetch_test.go b/internal/reddit/fetch_test.go index 987368a..7baaa91 100644 --- a/internal/reddit/fetch_test.go +++ b/internal/reddit/fetch_test.go @@ -8,7 +8,7 @@ import ( const URL = `https://old.reddit.com/r/gamedev/comments/horm1a/ive_started_making_a_teaching_aid_for_people/` func TestRTFetch(t *testing.T) { - _, err := Fetch(URL, "Reddit_Cli/0.1", 100, 3, time.Second*10) + _, err := Fetch(URL, "Reddit_Cli/0.1", time.Second*10) if err != nil { t.Fail() }