File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ async def test_gssapi_simple(self):
169
169
170
170
# Log in using URI, with authMechanismProperties.
171
171
mech_properties_str = ""
172
- for key , value in self .mech_properties .values ():
172
+ for key , value in self .mech_properties .items ():
173
173
mech_properties_str += f"{ key } :{ value } ,"
174
174
mech_uri = uri + f"&authMechanismProperties={ mech_properties_str [:- 1 ]} "
175
175
client = self .simple_client (mech_uri )
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ def test_gssapi_simple(self):
169
169
170
170
# Log in using URI, with authMechanismProperties.
171
171
mech_properties_str = ""
172
- for key , value in self .mech_properties .values ():
172
+ for key , value in self .mech_properties .items ():
173
173
mech_properties_str += f"{ key } :{ value } ,"
174
174
mech_uri = uri + f"&authMechanismProperties={ mech_properties_str [:- 1 ]} "
175
175
client = self .simple_client (mech_uri )
You can’t perform that action at this time.
0 commit comments