From ad6e105862ce2435ef7e116eb9fbe81a70283608 Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Thu, 25 Jul 2024 18:11:09 +1200 Subject: [PATCH] Update scenario/context.py Co-authored-by: PietroPasotti --- scenario/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scenario/context.py b/scenario/context.py index 8a90ae67..d8a95751 100644 --- a/scenario/context.py +++ b/scenario/context.py @@ -132,7 +132,7 @@ def _run(self) -> Union[ActionOutput, "State"]: def __exit__(self, exc_type, exc_val, exc_tb): # noqa: U100 if not self._emitted: - logger.debug("event not emitted. Doing so implicitly...") + logger.debug("user didn't emit the event within the context manager scope. Doing so implicitly upon exit...") # The output is discarded so we can use the private method. self._run()