Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteVandecrux committed Jun 15, 2024
1 parent 569b8bd commit c6f4233
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/pypromice/process/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,21 +61,21 @@ def testCLIgetl2(self):
'''Test get_l2 CLI'''
exit_status = os.system('get_l2 -h')
self.assertEqual(exit_status, 0)

def testCLIgetl3(self):
'''Test get_l3 CLI'''
exit_status = os.system('get_l3 -h')
self.assertEqual(exit_status, 0)

def testCLIjoinl2(self):
'''Test join_l2 CLI'''
exit_status = os.system('join_l2 -h')
self.assertEqual(exit_status, 0)

def testCLIjoinl3(self):
'''Test join_l2 CLI'''
def testCLIgetl2tol3(self):
'''Test get_l2tol3 CLI'''
exit_status = os.system('get_l2tol3 -h')
self.assertEqual(exit_status, 0)

def testCLIjoinl3(self):
'''Test join_l3 CLI'''
exit_status = os.system('join_l3 -h')
self.assertEqual(exit_status, 0)

if __name__ == "__main__":

Expand Down

0 comments on commit c6f4233

Please sign in to comment.