Skip to content

Commit

Permalink
tests/avocado/machine_m68k_nextcube: Fix the download URL for the ROM…
Browse files Browse the repository at this point in the history
… image

If Avocado has to fetch this asset, the download fails with a 403 HTTP
error. Use a different URL to fix the issue.

Message-ID: <20231101201934.27637-1-huth@tuxfamily.org>
Signed-off-by: Thomas Huth <huth@tuxfamily.org>
  • Loading branch information
huth committed Nov 2, 2023
1 parent f2a80c6 commit a35c209
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/avocado/machine_m68k_nextcube.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class NextCubeMachine(QemuSystemTest):
timeout = 15

def check_bootrom_framebuffer(self, screenshot_path):
rom_url = ('http://www.nextcomputers.org/NeXTfiles/Software/ROM_Files/'
'68040_Non-Turbo_Chipset/Rev_2.5_v66.BIN')
rom_url = ('https://sourceforge.net/p/previous/code/1350/tree/'
'trunk/src/Rev_2.5_v66.BIN?format=raw')
rom_hash = 'b3534796abae238a0111299fc406a9349f7fee24'
rom_path = self.fetch_asset(rom_url, asset_hash=rom_hash)

Expand Down

0 comments on commit a35c209

Please sign in to comment.