Skip to content

Commit 2e89f0a

Browse files
committed
Remove debug log from tests
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent cd82b55 commit 2e89f0a

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tests/test_mananging_actor.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
import asyncio
77
import heapq
8-
import logging
98
from dataclasses import dataclass, replace
109
from datetime import datetime, timedelta, timezone
1110
from typing import AsyncIterator, Callable, Iterator, cast
@@ -70,7 +69,6 @@ def __init__(
7069
) -> None:
7170
"""Initialize the actor."""
7271
super().__init__(name="MockActor")
73-
logging.info("MockActor created")
7472
self.initial_dispatch = initial_dispatch
7573
self.receiver = receiver
7674

@@ -166,15 +164,12 @@ async def test_simple_start_stop(
166164
fake_time.shift(timedelta(seconds=1))
167165
await asyncio.sleep(1)
168166
await asyncio.sleep(1)
169-
logging.info("Sent dispatch")
170167

171168
event = test_env.actor(1).initial_dispatch
172169
assert event.options == {"test": True}
173170
assert event.components == dispatch.target
174171
assert event.dry_run is False
175172

176-
logging.info("Received dispatch")
177-
178173
assert test_env.actor(1).is_running is True
179174

180175
fake_time.shift(duration)

0 commit comments

Comments
 (0)