From 4f710ab596ed3da81f332ee1d5ace127c46dcd4b Mon Sep 17 00:00:00 2001 From: Valentine Date: Wed, 21 Feb 2024 06:21:57 +0300 Subject: [PATCH] rm fmt from test --- follows_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/follows_test.go b/follows_test.go index 112a4fb..3aa9227 100644 --- a/follows_test.go +++ b/follows_test.go @@ -1,7 +1,6 @@ package twitterscraper_test import ( - "fmt" "testing" ) @@ -10,7 +9,6 @@ func TestFetchFollowing(t *testing.T) { if err != nil { t.Error(err) } - fmt.Println(users[0].Username) if len(users) < 1 || users[len(users)-1].Username == "" { t.Error("error FetchFollowing() No users found") }