@@ -335,15 +335,14 @@ def test_aarch64_xlnx_versal_virt(self):
:avocado: tags=device:pl011
:avocado: tags=device:arm_gicv3
"""
- kernel_url = ('http://ports.ubuntu.com/ubuntu-ports/dists/'
- 'bionic-updates/main/installer-arm64/current/images/'
- 'netboot/ubuntu-installer/arm64/linux')
+ images_url = ('http://ports.ubuntu.com/ubuntu-ports/dists/'
+ 'bionic-updates/main/installer-arm64/'
+ 'current/images/')
+ kernel_url = images_url + 'netboot/ubuntu-installer/arm64/linux'
kernel_hash = '5bfc54cf7ed8157d93f6e5b0241e727b6dc22c50'
kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
- initrd_url = ('http://ports.ubuntu.com/ubuntu-ports/dists/'
- 'bionic-updates/main/installer-arm64/current/images/'
- 'netboot/ubuntu-installer/arm64/initrd.gz')
+ initrd_url = images_url + 'netboot/ubuntu-installer/arm64/initrd.gz'
initrd_hash = 'd385d3e88d53e2004c5d43cbe668b458a094f772'
initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
Both files refer to the same directory. Store the common part in a new variable. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20200810093050.28744-2-philmd@redhat.com> --- tests/acceptance/boot_linux_console.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-)