From f0d441d3eabe3d10a3ebb8427d14256394cdd5de Mon Sep 17 00:00:00 2001 From: Martin Hatina Date: Mon, 12 Feb 2018 08:35:21 +0100 Subject: [PATCH] fix module tests --- tests/test_modules.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_modules.py b/tests/test_modules.py index ea8483dda9..117283d8f9 100644 --- a/tests/test_modules.py +++ b/tests/test_modules.py @@ -572,7 +572,7 @@ def test_install_profile_latest(self): "glibc-2.25.90-2.x86_64", "glibc-common-2.25.90-2.x86_64", "httpd-2.4.25-8.x86_64", - "libnghttp2-1.21.1-1.1.x86_64", # expected behaviour, non-modular rpm pulled in + "libnghttp2-1.21.1-1.x86_64", # expected behaviour, non-modular rpm pulled in ] self.assertInstalls(expected) @@ -586,7 +586,7 @@ def test_install_profile(self): "glibc-2.25.90-2.x86_64", "glibc-common-2.25.90-2.x86_64", "httpd-2.4.25-7.x86_64", - "libnghttp2-1.21.1-1.1.x86_64", # expected behaviour, non-modular rpm pulled in + "libnghttp2-1.21.1-1.x86_64", # expected behaviour, non-modular rpm pulled in ] self.assertInstalls(expected) @@ -602,7 +602,7 @@ def test_install_two_profiles(self): "glibc-common-2.25.90-2.x86_64", "httpd-2.4.25-7.x86_64", "httpd-doc-2.4.25-7.x86_64", - "libnghttp2-1.21.1-1.1.x86_64", # expected behaviour, non-modular rpm pulled in + "libnghttp2-1.21.1-1.x86_64", # expected behaviour, non-modular rpm pulled in ] self.assertInstalls(expected) @@ -618,7 +618,7 @@ def test_install_two_profiles_different_versions(self): "glibc-common-2.25.90-2.x86_64", "httpd-2.4.25-8.x86_64", "httpd-doc-2.4.25-8.x86_64", - "libnghttp2-1.21.1-1.1.x86_64", # expected behaviour, non-modular rpm pulled in + "libnghttp2-1.21.1-1.x86_64", # expected behaviour, non-modular rpm pulled in ] self.assertInstalls(expected)