Skip to content

Commit

Permalink
Add missing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinse committed Jun 4, 2024
1 parent 07c4786 commit 1076dbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,21 @@ def test_main_list_od(odpath, file):

import argparse
ns = argparse.Namespace(
no_sort=False, index=[], compact=False, short=False, unused=True,
sort=True, index=[], compact=False, short=False, unused=True,
all=True, raw=False
)

lines = list(__main__.list_od(od, file, ns))

ns = argparse.Namespace(
no_sort=False, index=[0x1000], compact=False, short=False, unused=True,
sort=True, index=[0x1000], compact=False, short=False, unused=True,
all=True, raw=False
)

lines = list(__main__.list_od(od, file, ns))

ns = argparse.Namespace(
no_sort=False, index=[0x5000], compact=False, short=False, unused=True,
sort=True, index=[0x5000], compact=False, short=False, unused=True,
all=True, raw=False
)

Expand Down

0 comments on commit 1076dbe

Please sign in to comment.