Skip to content

Commit c5efe54

Browse files
committed
tests/functional/test_arm_quanta_gsj: Fix broken test
ASSET_IMAGE needs to be prefixed with "self." ... this bug apparently went in unnoticed because the test is not run by default. Message-ID: <[email protected]> Reviewed-by: Philippe Mathieu-Daudé <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent ec2dfb7 commit c5efe54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/functional/test_arm_quanta_gsj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class EmcraftSf2Machine(LinuxKernelTest):
3535
@skipUnless(os.getenv('QEMU_TEST_TIMEOUT_EXPECTED'), 'Test might timeout')
3636
def test_arm_quanta_gsj(self):
3737
self.set_machine('quanta-gsj')
38-
image_path = self.uncompress(ASSET_IMAGE, 'obmc.mtd', format='gz')
38+
image_path = self.uncompress(self.ASSET_IMAGE, format='gz')
3939

4040
self.vm.set_console()
4141
drive_args = 'file=' + image_path + ',if=mtd,bus=0,unit=0'

0 commit comments

Comments
 (0)