Merge pull request #1308 from rooftopcellist/fix_censor

Fix censor
This commit is contained in:
Christian Adams
2018-04-12 11:56:44 -04:00
committed by GitHub
4 changed files with 13 additions and 12 deletions

View File

@@ -115,7 +115,7 @@ def test_oauth_token_create(oauth_application, get, post, admin):
)
assert response.data['summary_fields']['tokens']['count'] == 1
assert response.data['summary_fields']['tokens']['results'][0] == {
'id': token.pk, 'scope': token.scope, 'token': '**************'
'id': token.pk, 'scope': token.scope, 'token': '************'
}