8000 Merge pull request #452 from jayvdb/quad-quotes · pythonthings/github3.py@685bbfe · GitHub
[go: up one dir, main page]

Skip to content

Commit 685bbfe

Browse files
committed
Merge pull request sigmavirus24#452 from jayvdb/quad-quotes
Fix extra quotation mark in docstrings
2 parents 7fda4c6 + c3662a1 commit 685bbfe

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