Update tests/test_utils_elog.py
Run CI Tests / test (push) Successful in 1m27s

This commit is contained in:
2025-08-06 22:58:42 +02:00
parent 4e1c44ccab
commit 2be7d99fcb
+2 -2
View File
@@ -107,7 +107,7 @@ def test_post():
text = "This is a message"
author = "robot"
resp = elog.post(text, Title=title, Author=author, Category="General", Type="Other")
resp = elog.post(text, title=title, author=author, category="General", type="Other")
assert resp is not None
url = f"http://localhost:8080/demo/{resp}"
@@ -130,7 +130,7 @@ def test_screenshot(mock_screenshot_class):
elog = get_test_elog()
test_msg = "SCREENSHOT_INTEGRATION_TEST_MSG_456"
entry_id = elog.screenshot(message=test_msg, Type="Other")
entry_id = elog.screenshot(message=test_msg, type="Other")
assert entry_id is not None