We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18fdf5c commit 496bea2Copy full SHA for 496bea2
1 file changed
tests/acceptance/pam/steps/then_steps.py
@@ -1,6 +1,5 @@
1
import json
2
from behave import then
3
-from soupsieve.util import lower
4
5
from pubnub.exceptions import PubNubException
6
@@ -23,7 +22,7 @@ def step_impl(context, channel):
23
22
@then("token {data_type} permission {permission}")
24
def step_impl(context, data_type, permission):
25
assert context.token_resource
26
- assert context.token_resource[lower(permission)] == True
+ assert context.token_resource[permission.lower()] == True
27
28
29
@then("the token contains the authorized UUID {test_uuid}")
0 commit comments