Fix a typo in tests
This commit is contained in:
parent
150050455a
commit
183b4dcd60
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ def test_parse_repo():
|
||||||
|
|
||||||
|
|
||||||
def test_parse_issue():
|
def test_parse_issue():
|
||||||
assert github.parse_issue("owner/repo#1") == (("owner", "repo", 1))
|
assert github.parse_issue("owner/repo#1") == (("owner", "repo"), 1)
|
||||||
assert github.parse_issue("owner/repo#0") is None
|
assert github.parse_issue("owner/repo#0") is None
|
||||||
assert github.parse_issue("#1", default_owner="owner", default_repo="repo") == (
|
assert github.parse_issue("#1", default_owner="owner", default_repo="repo") == (
|
||||||
("owner", "repo"),
|
("owner", "repo"),
|
||||||
|
|
Loading…
Reference in a new issue