From 75e59790490f593e6b0d76f486bf2ed24a83fdea Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 6 Aug 2025 23:15:11 +0200 Subject: [PATCH] Update tests/test_utils_elog.py --- tests/test_utils_elog.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_utils_elog.py b/tests/test_utils_elog.py index 6a26d395b..8257d6a8e 100644 --- a/tests/test_utils_elog.py +++ b/tests/test_utils_elog.py @@ -34,7 +34,7 @@ def test_check_required_attributes(): def test_post(): logbook = elog.open('localhost', 'demo', port=8080, use_ssl=False) new_msg_id = logbook.post('This is message text', author='me', type='Routine') - print("BBBBBBBBBBBBBBBBBBBBB : ", new_msg_id) + print("BBBBBBBBBBBBBBBBBBBBB : ", new_msg_id, file=sys.__stdout__) # Connexion basique avec credentials connus def get_test_elog(): @@ -112,6 +112,7 @@ def test_post(): author = "robot" resp = elog.post(text, title=title, author=author, category="General", type="Other") + print("RRRRRRRRRRRRRRRRRRR : ", resp, file=sys.__stdout__) assert resp is not None url = f"http://localhost:8080/demo/{resp}"