Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BaptisteVandecrux committed Jun 4, 2024
1 parent 59aa133 commit 228f0b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
'console_scripts': [
'get_promice_data = pypromice.get.get_promice_data:get_promice_data',
'get_l0tx = pypromice.tx.get_l0tx:get_l0tx',
'get_l2 = pypromice.process.get_l3:get_l2',
'join_l2 = pypromice.process.join_l3:join_l2',
'get_l2 = pypromice.process.get_l2:get_l2',
'join_l2 = pypromice.process.join_l2:join_l2',
'get_l3 = pypromice.process.get_l3:get_l3',
'get_watsontx = pypromice.tx.get_watsontx:get_watsontx',
'get_bufr = pypromice.postprocess.get_bufr:main',
Expand Down
4 changes: 2 additions & 2 deletions src/pypromice/process/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -894,12 +894,12 @@ def testL0toL2(self):
self.assertTrue(pAWS.L2.attrs['station_id']=='TEST1')

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

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

Expand Down

0 comments on commit 228f0b5

Please sign in to comment.