Skip to content

Commit 40dd51f

Browse files
committed
tests: core: drop debug prints
1 parent bec7a24 commit 40dd51f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

safeeyes/tests/test_core.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ def timeout_add_seconds(self, duration: int, callback: typing.Callable) -> int:
4545
if self.callback is not None:
4646
raise Exception("only one callback supported. need to make this smarter")
4747
self.callback = (callback, duration)
48-
print(f"callback registered for {callback} and {duration}")
4948
return 1
5049

5150
def next(self) -> None:
@@ -54,7 +53,6 @@ def next(self) -> None:
5453
(callback, duration) = self.callback
5554
self.callback = None
5655
self.time_machine.shift(delta=datetime.timedelta(seconds=duration))
57-
print(f"shift to {datetime.datetime.now()}")
5856
callback()
5957

6058

0 commit comments

Comments
 (0)