Skip to content

Commit

Permalink
fix extra_args param in test
Browse files Browse the repository at this point in the history
  • Loading branch information
aeflores committed Dec 8, 2023
1 parent 78aa255 commit 0c6a6b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/misc_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ def test_pe_function_symbol_selection(self):
with cd(ex_dir / "ex_ml_sym_mangling"):
proc = subprocess.run(make("all"), stdout=subprocess.DEVNULL)
self.assertEqual(proc.returncode, 0)
for extra_args in ["", "-F"]:
for extra_args in ([], ["-F"]):
with self.subTest(extra_args=extra_args):
self.assertTrue(
disassemble(
Expand Down

0 comments on commit 0c6a6b3

Please sign in to comment.