diff options
author | Lorenz Diener <[email protected]> | 2018-06-05 17:47:26 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2018-06-05 17:47:26 +0200 |
commit | 256037f272c5312dc9c0478498d6abd55fa9fd19 (patch) | |
tree | af823f068c00d2ced10742336c52e40a093b589c /tests | |
parent | fd21e573e3aa0081eb2aa558404acb403ae2a5e6 (diff) | |
download | mastodon.py-256037f272c5312dc9c0478498d6abd55fa9fd19.tar.gz |
Small test fix
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py index 2b27d5b..a8ae52c 100644 --- a/tests/test_auth.py +++ b/tests/test_auth.py | |||
@@ -15,7 +15,7 @@ def test_auth_request_url(api): | |||
15 | assert query['client_id'][0] == api.client_id | 15 | assert query['client_id'][0] == api.client_id |
16 | assert query['response_type'][0] == 'code' | 16 | assert query['response_type'][0] == 'code' |
17 | assert query['redirect_uri'][0] == 'urn:ietf:wg:oauth:2.0:oob' | 17 | assert query['redirect_uri'][0] == 'urn:ietf:wg:oauth:2.0:oob' |
18 | assert set(query['scope'][0].split()) == set(('read', 'write', 'follow')) | 18 | assert set(query['scope'][0].split()) == set(('read', 'write', 'follow', 'push')) |
19 | 19 | ||
20 | 20 | ||
21 | def test_log_in_none(api_anonymous): | 21 | def test_log_in_none(api_anonymous): |