Skip to content

Commit

Permalink
Adapt method call to new method name in test
Browse files Browse the repository at this point in the history
  • Loading branch information
cwerling committed Jun 14, 2023
1 parent 189addc commit 1a5edc8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/integration/test_rom_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,7 @@ def test_extract_advanced(self):
if isinstance(entry, HeaderEntry):
with io.StringIO() as stderr_buf:
with contextlib.redirect_stderr(stderr_buf):
out_decompressed = entry.get_decompressed_body()
out_decrypted = entry.get_decrypted()
out_decrypted = entry.get_decrypted_decompressed_body()
# Check that there were no warnings
self.assertEqual(stderr_buf.getvalue(), "")

Expand Down

0 comments on commit 1a5edc8

Please sign in to comment.