diff options
Diffstat (limited to 'tests/format')
-rw-r--r-- | tests/format/elf/non_existing_binary.py | 2 | ||||
-rw-r--r-- | tests/format/elf/oob_section_name.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/format/elf/non_existing_binary.py b/tests/format/elf/non_existing_binary.py index 6111f03..a6eddd3 100644 --- a/tests/format/elf/non_existing_binary.py +++ b/tests/format/elf/non_existing_binary.py @@ -21,4 +21,4 @@ class TestNonExistingBinary(ChrysalideTestCase): with self.assertRaisesRegex(TypeError, 'The argument must be an instance of BinContent.'): - fmt = ElfFormat(cnt) + fmt = ElfFormat(cnt, None, None) diff --git a/tests/format/elf/oob_section_name.py b/tests/format/elf/oob_section_name.py index 8f91efd..a478ec7 100644 --- a/tests/format/elf/oob_section_name.py +++ b/tests/format/elf/oob_section_name.py @@ -44,5 +44,5 @@ class TestNonExistingBinary(ChrysalideTestCase): cnt = FileContent(fullname[:baselen] + 'oob_section_name') self.assertIsNotNone(cnt) - fmt = ElfFormat(cnt) + fmt = ElfFormat(cnt, None, None) self.assertIsInstance(fmt, ElfFormat) |