@@ -54,7 +54,7 @@ def _stub_print(self, *objects):
5454 """Pretend to print to standard output."""
5555 print (* objects , file = self ._stdout )
5656
57- def test_available_apkg_adv_insts_filter_packages (self ):
57+ def test_avail_filter_pkgs (self ):
5858 """Test querying with an packages filter."""
5959 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
6060 cmd .refresh_installed_cache ()
@@ -66,7 +66,7 @@ def test_available_apkg_adv_insts_filter_packages(self):
6666 'incorrect pairs' )
6767 cmd .clear_installed_cache ()
6868
69- def test_available_apkg_adv_insts_filter_packages_nonexistent (self ):
69+ def test_avail_filter_pkgs_nonex (self ):
7070 """Test querying with a non-existent packages filter."""
7171 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
7272 cmd .refresh_installed_cache ()
@@ -77,7 +77,7 @@ def test_available_apkg_adv_insts_filter_packages_nonexistent(self):
7777 [], 'incorrect pairs' )
7878 cmd .clear_installed_cache ()
7979
80- def test_available_apkg_adv_insts_filter_security (self ):
80+ def test_avail_filter_security (self ):
8181 """Test querying with a security filter."""
8282 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
8383 cmd .refresh_installed_cache ()
@@ -89,7 +89,7 @@ def test_available_apkg_adv_insts_filter_security(self):
8989 'incorrect pairs' )
9090 cmd .clear_installed_cache ()
9191
92- def test_installed_apkg_adv_insts (self ):
92+ def test_inst (self ):
9393 """Test installed triplets querying."""
9494 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
9595 cmd .refresh_installed_cache ()
@@ -102,7 +102,7 @@ def test_installed_apkg_adv_insts(self):
102102 'incorrect pairs' )
103103 cmd .clear_installed_cache ()
104104
105- def test_installed_apkg_adv_insts_filter_bugfix (self ):
105+ def test_inst_filter_bugfix (self ):
106106 """Test querying with a bugfix filter."""
107107 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
108108 cmd .refresh_installed_cache ()
@@ -114,7 +114,7 @@ def test_installed_apkg_adv_insts_filter_bugfix(self):
114114 'incorrect pairs' )
115115 cmd .clear_installed_cache ()
116116
117- def test_installed_apkg_adv_insts_filter_enhancement (self ):
117+ def test_inst_filter_enhancement (self ):
118118 """Test querying with an enhancement filter."""
119119 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
120120 cmd .refresh_installed_cache ()
@@ -126,7 +126,7 @@ def test_installed_apkg_adv_insts_filter_enhancement(self):
126126 'incorrect pairs' )
127127 cmd .clear_installed_cache ()
128128
129- def test_updating_apkg_adv_insts (self ):
129+ def test_upd (self ):
130130 """Test updating triplets querying."""
131131 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
132132 cmd .refresh_installed_cache ()
@@ -138,7 +138,7 @@ def test_updating_apkg_adv_insts(self):
138138 'incorrect pairs' )
139139 cmd .clear_installed_cache ()
140140
141- def test_all_apkg_adv_insts (self ):
141+ def test_all (self ):
142142 """Test all triplets querying."""
143143 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
144144 cmd .refresh_installed_cache ()
@@ -151,7 +151,7 @@ def test_all_apkg_adv_insts(self):
151151 ('tour-5-1.noarch.rpm' , 'DNF-2014-3' , False )])
152152 cmd .clear_installed_cache ()
153153
154- def test_all_apkg_adv_insts_filter_advisories (self ):
154+ def test_all_filter_advisories (self ):
155155 """Test querying with an advisories filter."""
156156 cmd = dnf .cli .commands .updateinfo .UpdateInfoCommand (self .cli )
157157 cmd .refresh_installed_cache ()
0 commit comments