@@ -28,7 +28,7 @@ def test_assignees(self):
2828 repository = self .gh .repository ('kennethreitz' , 'requests' )
2929 assert repository is not None
3030 for assignee in repository .assignees ():
31- assert isinstance (assignee , github3 .users .User )
31+ assert isinstance (assignee , github3 .users .ShortUser )
3232
3333 def test_blob (self ):
3434 """Test the ability to retrieve blob on a repository."""
@@ -83,7 +83,7 @@ def test_collaborators(self):
8383 repository = self .gh .repository ('sigmavirus24' , 'github3.py' )
8484 assert repository is not None
8585 for collaborator in repository .collaborators ():
86- assert isinstance (collaborator , github3 .users .User )
86+ assert isinstance (collaborator , github3 .users .ShortUser )
8787
8888 def test_comments (self ):
8989 """Test the ability to retrieve comments on a repository."""
@@ -146,7 +146,7 @@ def test_contributors(self):
146146 repository = self .gh .repository ('sigmavirus24' , 'github3.py' )
147147 assert repository is not None
148148 for contributor in repository .contributors ():
149- assert isinstance (contributor , github3 .users .User )
149+ assert isinstance (contributor , github3 .users .ShortUser )
150150 assert isinstance (contributor .contributions , int )
151151
152152 def test_create_blob (self ):
@@ -1017,7 +1017,7 @@ def test_stargazers(self):
10171017
10181018 assert len (stargazers ) > 0
10191019 for user in stargazers :
1020- assert isinstance (user , github3 .users .User )
1020+ assert isinstance (user , github3 .users .ShortUser )
10211021
10221022 def test_statuses (self ):
10231023 """Test the ability to retrieve a commit's statuses."""
@@ -1043,7 +1043,7 @@ def test_subscribers(self):
10431043
10441044 assert len (subscribers ) > 0
10451045 for user in subscribers :
1046- assert isinstance (user , github3 .users .User )
1046+ assert isinstance (user , github3 .users .ShortUser )
10471047
10481048 def test_subscribe (self ):
10491049 """Test the ability to subscribe to a repository's notifications."""
0 commit comments