8000 tests pass · Lukasa/github3.py@84e5871 · GitHub
[go: up one dir, main page]

Skip to content

Commit 84e5871

Browse files
committed
tests pass
1 parent 744a59d commit 84e5871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_github.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -639,14 +639,14 @@ def test_pull_request(self):
639639
repo.return_value = github3.repos.Repository(load('repo'))
640640
pr = self.g.pull_request('sigmavirus24', 'github3.py', 18)
641641

642-
expect(pr).isinstance(github3.pulls.PullRequest)
642+
assert isinstance(pr, github3.pulls.PullRequest)
643643

644644
self.mock_assertions()
645645

646646
def test_repository(self):
647647
self.response('repo')
648648
repo = self.g.repository(None, None)
649-
expect(repo).is_None()
649+
assert repo is None
650650
self.not_called()
651651

652652
self.get('https://api.github.com/repos/sigmavirus24/github3.py')

0 commit comments

Comments
 (0)
0