Skip to content

Commit

Permalink
reflect CLI rename in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kvdomingo committed Sep 24, 2020
1 parent 2d50182 commit f562b9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdcli/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
class CommandLineTestCase(TestCase):
def test_return_help_on_no_arguments(self):
proc = subprocess.run(
['python', 'pdcli.py'],
['python', 'primerdriver.py'],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL
)
self.assertEqual(proc.returncode, 0)

def test_no_exception_on_help(self):
proc = subprocess.run(
['python', 'pdcli.py', '-h'],
['python', 'primerdriver.py', '-h'],
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL
)
Expand Down

0 comments on commit f562b9d

Please sign in to comment.