8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 744a59d commit 84e5871Copy full SHA for 84e5871
tests/test_github.py
@@ -639,14 +639,14 @@ def test_pull_request(self):
639
repo.return_value = github3.repos.Repository(load('repo'))
640
pr = self.g.pull_request('sigmavirus24', 'github3.py', 18)
641
642
- expect(pr).isinstance(github3.pulls.PullRequest)
+ assert isinstance(pr, github3.pulls.PullRequest)
643
644
self.mock_assertions()
645
646
def test_repository(self):
647
self.response('repo')
648
repo = self.g.repository(None, None)
649
- expect(repo).is_None()
+ assert repo is None
650
self.not_called()
651
652
self.get('https://api.github.com/repos/sigmavirus24/github3.py')
0 commit comments