Skip to content

Commit 496bea2

Browse files
committed
test: remove 'lower'
1 parent 18fdf5c commit 496bea2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/acceptance/pam/steps/then_steps.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import json
22
from behave import then
3-
from soupsieve.util import lower
43

54
from pubnub.exceptions import PubNubException
65

@@ -23,7 +22,7 @@ def step_impl(context, channel):
2322
@then("token {data_type} permission {permission}")
2423
def step_impl(context, data_type, permission):
2524
assert context.token_resource
26-
assert context.token_resource[lower(permission)] == True
25+
assert context.token_resource[permission.lower()] == True
2726

2827

2928
@then("the token contains the authorized UUID {test_uuid}")

0 commit comments

Comments
 (0)