Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix openid tests after rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Robinson <jasonr@matrix.org>
  • Loading branch information
jaywink committed Jan 23, 2019
1 parent a47fac9 commit 1838ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/app/test_openid_listener.py
Expand Up @@ -54,7 +54,7 @@ def test_openid_listener(self, names, expectation):
site = self.reactor.tcpServers[0][1]
try:
self.resource = (
site.resource.children[b"_matrix"].children[b"federation"].children[b"v1"]
site.resource.children[b"_matrix"].children[b"federation"]
)
except KeyError:
if expectation == "no_resource":
Expand Down Expand Up @@ -100,7 +100,7 @@ def test_openid_listener(self, names, expectation):
site = self.reactor.tcpServers[0][1]
try:
self.resource = (
site.resource.children[b"_matrix"].children[b"federation"].children[b"v1"]
site.resource.children[b"_matrix"].children[b"federation"]
)
except KeyError:
if expectation == "no_resource":
Expand Down

0 comments on commit 1838ef1

Please sign in to comment.