From d36b8445c30ce2ab410741d8a0c5cf9f6a42acb2 Mon Sep 17 00:00:00 2001 From: Lukas Hellebrandt Date: Tue, 13 Feb 2024 15:13:38 +0100 Subject: [PATCH] Make docstring more understandable. Lower importance. --- tests/foreman/cli/test_auth.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/foreman/cli/test_auth.py b/tests/foreman/cli/test_auth.py index 59aafee0be5..1ea8bb7bd47 100644 --- a/tests/foreman/cli/test_auth.py +++ b/tests/foreman/cli/test_auth.py @@ -230,11 +230,14 @@ def test_positive_session_survives_failed_login(admin_user, non_admin_user, targ :steps: 1. Set use_sessions - 2. Authenticate, assert credentials are not demanded - on next command run - 3. Run login with invalid credentials + 2. Authenticate + 3. Run an authenticated command, assert credentials are not demanded + 4. Run login with invalid credentials + 5. Run an authenticated command, assert credentials are not demanded :expectedresults: The session is unchanged + + :CaseImportance: High """ result = configure_sessions(target_sat) assert result == 0, 'Failed to configure hammer sessions'