From 228f0b5e4403e17a713cbecdab558f4e911429ca Mon Sep 17 00:00:00 2001 From: Baptiste Vandecrux <35140661+BaptisteVandecrux@users.noreply.github.com> Date: Tue, 4 Jun 2024 12:27:00 +0200 Subject: [PATCH] typo fix --- setup.py | 4 ++-- src/pypromice/process/aws.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 56a5d191..1755a7a3 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/src/pypromice/process/aws.py b/src/pypromice/process/aws.py index b7834acd..1998a584 100644 --- a/src/pypromice/process/aws.py +++ b/src/pypromice/process/aws.py @@ -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)