rm fmt from test

This commit is contained in:
Valentine 2024-02-21 06:21:57 +03:00
parent 5dee67c2da
commit 4f710ab596

View file

@ -1,7 +1,6 @@
package twitterscraper_test package twitterscraper_test
import ( import (
"fmt"
"testing" "testing"
) )
@ -10,7 +9,6 @@ func TestFetchFollowing(t *testing.T) {
if err != nil { if err != nil {
t.Error(err) t.Error(err)
} }
fmt.Println(users[0].Username)
if len(users) < 1 || users[len(users)-1].Username == "" { if len(users) < 1 || users[len(users)-1].Username == "" {
t.Error("error FetchFollowing() No users found") t.Error("error FetchFollowing() No users found")
} }