From 77425b3f82ad760d3147e7149980880e95f31963 Mon Sep 17 00:00:00 2001 From: Sam Bible Date: Fri, 3 May 2024 10:08:38 -0500 Subject: [PATCH] Add additional checks for table fields --- tests/foreman/ui/test_contentview.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/foreman/ui/test_contentview.py b/tests/foreman/ui/test_contentview.py index 78fed2895c0..3f6f0405d13 100644 --- a/tests/foreman/ui/test_contentview.py +++ b/tests/foreman/ui/test_contentview.py @@ -89,6 +89,9 @@ def test_version_table_read(session, function_sca_manifest_org, target_sat): ) assert package_name in response[0]['Name'] assert response[0]['Epoch'] + assert response[0]['Name'] == 'aajohan-comfortaa-fonts-3.001-2.el8.noarch' + assert response[0]['Version'] == '3.001' + assert response[0]['Release'] == '2.el8' @pytest.mark.tier2