Skip to content

Commit

Permalink
Use consistent quote style
Browse files Browse the repository at this point in the history
  • Loading branch information
colesbury committed Feb 11, 2024
1 parent 09bd7cb commit 48356a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Lib/test/test_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,11 +403,11 @@ def _shutdown_all_methods_in_many_threads(self, immediate):
for thread in ps[1:]:
thread.join()

@unittest.skipIf(sys.platform == 'win32', "test times out (gh-115258)")
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
def test_shutdown_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(False)

@unittest.skipIf(sys.platform == 'win32', "test times out (gh-115258)")
@unittest.skipIf(sys.platform == "win32", "test times out (gh-115258)")
def test_shutdown_immediate_all_methods_in_many_threads(self):
return self._shutdown_all_methods_in_many_threads(True)

Expand Down

0 comments on commit 48356a8

Please sign in to comment.