Skip to content

Commit c73a87a

Browse files
committed
fix test
1 parent 2a16ba1 commit c73a87a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/asynchronous/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ async def test_gssapi_simple(self):
169169

170170
# Log in using URI, with authMechanismProperties.
171171
mech_properties_str = ""
172-
for key, value in self.mech_properties.values():
172+
for key, value in self.mech_properties.items():
173173
mech_properties_str += f"{key}:{value},"
174174
mech_uri = uri + f"&authMechanismProperties={mech_properties_str[:-1]}"
175175
client = self.simple_client(mech_uri)

test/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def test_gssapi_simple(self):
169169

170170
# Log in using URI, with authMechanismProperties.
171171
mech_properties_str = ""
172-
for key, value in self.mech_properties.values():
172+
for key, value in self.mech_properties.items():
173173
mech_properties_str += f"{key}:{value},"
174174
mech_uri = uri + f"&authMechanismProperties={mech_properties_str[:-1]}"
175175
client = self.simple_client(mech_uri)

0 commit comments

Comments
 (0)