8000 Fix extra quotation mark in docstrings · pythonthings/github3.py@c3662a1 · GitHub
[go: up one dir, main page]

Skip to content

Commit c3662a1

Browse files
committed
Fix extra quotation mark in docstrings
1 parent 7fda4c6 commit c3662a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/unit/test_auths.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_add_scopes(self):
3939
})
4040

4141
def test_delete(self):
42-
""""Test the request to delete an authorization."""
42+
"""Test the request to delete an authorization."""
4343
self.instance.delete()
4444

4545
self.session.delete.assert_called_once_with(url_for(''))

tests/unit/test_github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def test_me(self):
211211
self.session.get.assert_called_once_with(url_for('user'))
212212

213213
def test_repository(self):
214-
""""Verify the GET request for a repository."""
214+
"""Verify the GET request for a repository."""
215215
self.instance.repository('user', 'repo')
216216

217217
self.session.get.assert_called_once_with(url_for('repos/user/repo'))

0 commit comments

Comments
 (0)
0