From e766f432135ce278acb9dc93648ff2b0073153d3 Mon Sep 17 00:00:00 2001 From: BobTheBuidler <70677534+BobTheBuidler@users.noreply.github.com> Date: Wed, 18 Dec 2024 01:43:48 -0400 Subject: [PATCH] feat(test): test CounterLock repr --- tests/primitives/test_counter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/primitives/test_counter.py b/tests/primitives/test_counter.py index 79979205..9e549fb1 100644 --- a/tests/primitives/test_counter.py +++ b/tests/primitives/test_counter.py @@ -6,6 +6,7 @@ @pytest.mark.asyncio_cooperative async def test_counter_lock(): counter = CounterLock(name="test") + assert repr(counter) == "" assert await counter.wait_for(0) assert counter._name == "test"