We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99cf935 commit afcb493Copy full SHA for afcb493
1 file changed
tests/test_logging.py
@@ -66,11 +66,13 @@ def test_local_logger(fake_plugin_local_log_dir: Path):
66
67
logger.info(LOG_STATEMENT)
68
69
+ plugin_component_name = FAKE_PLUGIN_UUID.split(".")[-1]
70
+
71
log_file = (
72
fake_plugin_local_log_dir
73
/ "com.elgato.StreamDeck/Plugins"
- / FAKE_PLUGIN_UUID
- / f"logs/{FAKE_LOGGER_NAME}.log"
74
+ / f"{FAKE_PLUGIN_UUID}.sdPlugin"
75
+ / f"logs/{plugin_component_name}.log"
76
)
77
78
assert log_file.exists()
0 commit comments