@@ -229,8 +229,8 @@ def test_apt_preferences(host):
229
229
@pytest .mark .skipif (not _is_apt (), reason = "Apt only supported on Ubuntu" )
230
230
def test_apt_custom_package_repository_is_available (host ):
231
231
with host .sudo ():
232
- host .check_output ("apt -y install td-agent " )
233
- assert host .package ("td-agent " ).is_installed
232
+ host .check_output ("apt -y install fluent-package " )
233
+ assert host .package ("fluent-package " ).is_installed
234
234
235
235
236
236
@pytest .mark .skipif (not _is_apt (), reason = "Apt only supported on Ubuntu" )
@@ -246,7 +246,7 @@ def test_apt_auth(host):
246
246
247
247
@pytest .mark .parametrize ('repo' , ["appstream" , "baseos" , "extras" , "epel" ])
248
248
@pytest .mark .skipif (not _is_dnf_mirror (),
249
- reason = "DNF OpenDev mirror only for CentOS 8 " )
249
+ reason = "DNF OpenDev mirror only for CentOS Stream 9 " )
250
250
def test_dnf_local_package_mirrors (host , repo ):
251
251
# Depends on SITE_MIRROR_FQDN environment variable.
252
252
assert os .getenv ('SITE_MIRROR_FQDN' )
@@ -261,8 +261,8 @@ def test_dnf_local_package_mirrors(host, repo):
261
261
@pytest .mark .skipif (not _is_dnf (), reason = "DNF only supported on CentOS/Rocky" )
262
262
def test_dnf_custom_package_repository_is_available (host ):
263
263
with host .sudo ():
264
- host .check_output ("dnf -y install td-agent " )
265
- assert host .package ("td-agent " ).is_installed
264
+ host .check_output ("dnf -y install fluent-package " )
265
+ assert host .package ("fluent-package " ).is_installed
266
266
267
267
268
268
@pytest .mark .skipif (not _is_dnf (), reason = "DNF only supported on CentOS/Rocky" )
0 commit comments