Fix integration tests after rebase

This commit is contained in:
Vincent Jacques
2012-02-23 19:48:08 +00:00
parent 2a5b743c2e
commit 04a2565d75
2 changed files with 8 additions and 5 deletions
+1
View File
@@ -28,6 +28,7 @@ class Requester:
def __statusCheckedRequest( self, verb, url, parameters, input ):
status, headers, output = self.__rawRequest( verb, url, parameters, input )
if status < 200 or status >= 300:
### @todo Be specific (403 is not the same thing as 404!)
raise UnknownGithubObject()
return headers, output