From ca31fe7ecc13b83eb86e0312a0a8e0a7a170470e Mon Sep 17 00:00:00 2001 From: Nomadic Date: Sat, 21 Sep 2019 12:06:42 +0300 Subject: [PATCH] Update err msg --- profile_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/profile_test.go b/profile_test.go index 678ebde..99fe6d4 100644 --- a/profile_test.go +++ b/profile_test.go @@ -38,15 +38,15 @@ func TestGetProfile(t *testing.T) { } if profile.FollowersCount == 0 { - t.Error("Expected FollowersCount length is greater than zero") + t.Error("Expected FollowersCount is greater than zero") } if profile.FollowingCount == 0 { - t.Error("Expected FollowingCount length is greater than zero") + t.Error("Expected FollowingCount is greater than zero") } if profile.LikesCount == 0 { - t.Error("Expected LikesCount length is greater than zero") + t.Error("Expected LikesCount is greater than zero") } if profile.TweetsCount == 0 { - t.Error("Expected TweetsCount length is greater than zero") + t.Error("Expected TweetsCount is greater than zero") } }