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 ed22b52 commit 000bc0aCopy full SHA for 000bc0a
test/rest.py
@@ -108,7 +108,8 @@ def test_get_connection(self):
108
109
url = '/repos/hpcugent/vsc-base/pulls/296/comments'
110
try:
111
- client.get_connection(Client.POST, url, body="{'body': 'test'}", headers={})
+ connection = client.get_connection(Client.POST, url, body="{'body': 'test'}", headers={})
112
self.assertTrue(False, "Trying to post a comment unauthorized should result in HTTPError")
113
+ print(f"\n\n --XXX-- connection: {connection}\n\n", flush=True)
114
except HTTPError:
115
pass
0 commit comments