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 338084e commit 35cc047Copy full SHA for 35cc047
tests/services/test_apps.py
@@ -17,5 +17,5 @@ class TestServiceApps:
17
async def test_verify_token(self, factories: Factories) -> None:
18
apps = AppsService()
19
token = factories.token.create(key="key")
20
- assert await apps.verify_token(token.key) is True
21
- assert await apps.verify_token("bogus") is False
+ assert await apps.verify_token(token.key, "/api/game/1/verify") is True
+ assert await apps.verify_token("bogus", "/api/game/1/verify") is False
0 commit comments