Skip to content

Commit 4ad8d64

Browse files
committed
this should solve Non-ASCII character '\xc2' error
1 parent fe5e5bf commit 4ad8d64

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tests/test_options_method.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,22 +30,16 @@ def jwt_refresh_token_required_endpoint():
3030
return app
3131

3232
def test_access_jwt_required_enpoint(app):
33-
# Test the options method shoud not be
34-
# affected by jwt required
3533
res = app.test_client().options('/jwt_required')
3634
assert res.status_code == 200
3735
assert res.data == b'ok'
3836

3937
def test_access_jwt_refresh_token_required_enpoint(app):
40-
# Test the options method shoud not be
41-
# affected by jwt required
4238
res = app.test_client().options('/jwt_refresh_token_required')
4339
assert res.status_code == 200
4440
assert res.data == b'ok'
4541

4642
def test_access_fresh_jwt_required_enpoint(app):
47-
# Test the options method shoud not be
48-
# affected by jwt required
4943
res = app.test_client().options('/fresh_jwt_required')
5044
assert res.status_code == 200
5145
assert res.data == b'ok'

0 commit comments

Comments
 (0)