From 420f6c041705ebc9a7faf3cc0fd6deba865694ae Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Fri, 10 Oct 2025 16:45:25 +0200 Subject: [PATCH] tests/functional/alpha: Remove superfluous fetch() line from the clipper test The kernel asset is retrieved automatically via the uncompress() line below the fetch(), so the fetch() is simply not necessary here. Reviewed-by: Richard Henderson Signed-off-by: Thomas Huth Message-ID: <20251010144525.842462-1-thuth@redhat.com> --- tests/functional/alpha/test_clipper.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/functional/alpha/test_clipper.py b/tests/functional/alpha/test_clipper.py index c5d7181953..d2a4c2a4ed 100755 --- a/tests/functional/alpha/test_clipper.py +++ b/tests/functional/alpha/test_clipper.py @@ -17,7 +17,6 @@ class AlphaClipperTest(LinuxKernelTest): def test_alpha_clipper(self): self.set_machine('clipper') - kernel_path = self.ASSET_KERNEL.fetch() uncompressed_kernel = self.uncompress(self.ASSET_KERNEL, format="gz") -- 2.47.3