Skip to content

Commit

Permalink
More test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vEpiphyte committed Jul 31, 2024
1 parent ab479b7 commit dac41d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions synapse/tests/test_axon.py
Original file line number Diff line number Diff line change
Expand Up @@ -1027,11 +1027,11 @@ async def test_axon_wput(self):

resp = await proxy.wput(sha256, 'vertex.link')
self.false(resp.get('ok'))
self.isin('InvalidURL: vertex.link', resp.get('mesg', ''))
self.isin('InvalidUrlClientError: vertex.link', resp.get('mesg', ''))

resp = await proxy.postfiles(fields, 'vertex.link')
self.false(resp.get('ok'))
self.isin('InvalidURL: vertex.link', resp.get('reason'))
self.isin('InvalidUrlClientError: vertex.link', resp.get('reason'))

# Bypass the Axon proxy configuration from Storm
url = axon.getLocalUrl()
Expand Down

0 comments on commit dac41d1

Please sign in to comment.