From 4e1c44ccab7207362927bb0abc9b1e6e3b0ed04d Mon Sep 17 00:00:00 2001 From: tligui_y Date: Wed, 6 Aug 2025 22:56:59 +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 998107815..60327a332 100644 --- a/tests/test_utils_elog.py +++ b/tests/test_utils_elog.py @@ -1,4 +1,5 @@ import os +import sys import tempfile import requests import pytest @@ -28,7 +29,7 @@ def get_default_elog_password(url, **kwargs): def test_check_required_attributes(): url = "http://localhost:8080/demo?cmd=Config" response = requests.get(url, auth=("robot", "testpassword")) - print(response.text) # Cherchez "Required Attributes" dans l'output + print(response.text, file=sys.__stdout__) # Cherchez "Required Attributes" dans l'output # Connexion basique avec credentials connus