@@ -26,7 +26,6 @@ def test_generate_unique_id():
2626 assert len (ids ) == len (set (ids )), "Should all be unique"
2727
2828
29- @pytest .mark .asyncio
3029async def test_EndpointStore_empty_operations ():
3130 """Sanity checks the basic operations of the EndpointStore work with an empty store"""
3231 store = EndpointStore (max_active_endpoints = 3 , max_endpoint_notifications = 2 )
@@ -45,7 +44,6 @@ async def test_EndpointStore_empty_operations():
4544 assert exc_match .value .status_code == HTTPStatus .NOT_FOUND
4645
4746
48- @pytest .mark .asyncio
4947async def test_EndpointStore_basic_operations ():
5048 """Sanity checks the basic operations of the EndpointStore"""
5149 store = EndpointStore (max_active_endpoints = 4 , max_endpoint_notifications = 3 )
@@ -107,7 +105,6 @@ async def test_EndpointStore_basic_operations():
107105 await store .add_notification (id3 , n10 )
108106
109107
110- @pytest .mark .asyncio
111108async def test_EndpointStore_cleanup ():
112109 """Tests that the cleanup operation correctly wipes out expired endpoints"""
113110 store = EndpointStore (max_active_endpoints = 99 , max_endpoint_notifications = 99 )
@@ -148,7 +145,6 @@ async def test_EndpointStore_cleanup():
148145 assert await store .try_delete_endpoint (future_time ) is True , "Should've been left alone"
149146
150147
151- @pytest .mark .asyncio
152148async def test_EndpointStore_disabled_endpoint ():
153149 """Tests that the cleanup operation correctly wipes out expired endpoints"""
154150
0 commit comments