Update err msg

This commit is contained in:
Nomadic 2019-09-21 12:06:42 +03:00
parent 8cdac0c96f
commit ca31fe7ecc

View file

@ -38,15 +38,15 @@ func TestGetProfile(t *testing.T) {
} }
if profile.FollowersCount == 0 { 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 { 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 { 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 { if profile.TweetsCount == 0 {
t.Error("Expected TweetsCount length is greater than zero") t.Error("Expected TweetsCount is greater than zero")
} }
} }