From 6ba8200ee6af1fb82dc0d1bf95a23e822d27cc29 Mon Sep 17 00:00:00 2001 From: Valentine Date: Tue, 9 Jul 2024 05:48:09 +0300 Subject: [PATCH] fix test TestGetProfileErrorSuspended --- profile_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile_test.go b/profile_test.go index d1ffd28..2765c98 100644 --- a/profile_test.go +++ b/profile_test.go @@ -112,7 +112,7 @@ func TestGetProfilePrivate(t *testing.T) { } func TestGetProfileErrorSuspended(t *testing.T) { - _, err := testScraper.GetProfile("2") + _, err := testScraper.GetProfile("1") if err == nil { t.Error("Expected Error, got success") } else {