Skip to content

Commit

Permalink
v0.23.2: Troubleshoot cross-platform time, async, & concurrency errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmlibre committed Jun 1, 2024
1 parent 4c0b120 commit 543fa06
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tests/test_Processes_Threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,16 @@ async def test_probe_delay_must_be_positive(self) -> None:
self._type.new(csprng, probe_delay=-1)


class TestProcesses(BasicTestSuite):
_type: type = Processes
_id_name: str = "process_id"
if platform.system() != "Windows":

class TestProcesses(BasicTestSuite):
_type: type = Processes
_id_name: str = "process_id"

if platform.system() != "Windows":

class TestThreads(BasicTestSuite):
_type: type = Threads
_id_name: str = "thread_id"
class TestThreads(BasicTestSuite):
_type: type = Threads
_id_name: str = "thread_id"


__all__ = sorted({n for n in globals() if n.lower().startswith("test")})
Expand Down

0 comments on commit 543fa06

Please sign in to comment.