Skip to content

Commit

Permalink
Fix hang in GSS auth test on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ronf committed Feb 17, 2022
1 parent 1192e8d commit 9a38cb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ async def test_gss_auth(self):
with self.subTest('GSS with MIC auth not available'):
await self.check_auth(b'gssapi-with-mic', (False, None))

for steps in range(4):
for steps in range(1, 4):
with self.subTest('GSS with MIC auth available'):
await self.check_auth(b'gssapi-with-mic', (True, None),
gss_host=str(steps), success=True)
Expand Down

0 comments on commit 9a38cb7

Please sign in to comment.