Skip to content

Commit

Permalink
Fix setDaemon warning on 3.10+
Browse files Browse the repository at this point in the history
  • Loading branch information
ashovlin committed Sep 26, 2024
1 parent 1413064 commit b4b29bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/customizations/sso/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ def setUp(self):
self.server_thread = threading.Thread(
target=self.fetcher.get_auth_code_and_state
)
self.server_thread.setDaemon(True)
self.server_thread.daemon = True
self.server_thread.start()

def test_expected_auth_code(self):
Expand Down

0 comments on commit b4b29bc

Please sign in to comment.