From 826ca1cad8703d248b1328a786ae432ba243d42e Mon Sep 17 00:00:00 2001 From: madsmpedersen <m@madsp.dk> Date: Mon, 1 Feb 2016 10:56:58 +0100 Subject: [PATCH] fix case problem in dlc --- wetb/dlc/tests/test_high_level.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wetb/dlc/tests/test_high_level.py b/wetb/dlc/tests/test_high_level.py index 3e931e8..9734d51 100644 --- a/wetb/dlc/tests/test_high_level.py +++ b/wetb/dlc/tests/test_high_level.py @@ -42,12 +42,12 @@ class TestDLCHighLevel(unittest.TestCase): def test_file_hour_lst(self): f, h = self.dlc_hl.file_hour_lst()[0] - self.assertEqual(os.path.abspath(f), os.path.abspath(testfilepath + 'res/DLC12_IEC61400-1ed3/dlc12_wsp04_wdir350_s3001.sel')) + self.assertEqual(os.path.abspath(f), os.path.abspath(testfilepath + 'res/dlc12_iec61400-1ed3/dlc12_wsp04_wdir350_s3001.sel')) self.assertEqual(h, .975 * .25 * 0.11002961306549919 / 2 * 20 * 365 * 24) def test_file_hour_lst_count(self): f, h = self.dlc_hl.file_hour_lst()[-1] - self.assertEqual(os.path.abspath(f), os.path.abspath(testfilepath + 'res/DLC31_IEC61400-1ed3/dlc31_wsp25_wdir000_s0000.sel')) + self.assertEqual(os.path.abspath(f), os.path.abspath(testfilepath + 'res/dlc31_iec61400-1ed3/dlc31_wsp25_wdir000_s0000.sel')) self.assertAlmostEqual(h, 0.0087201928 * 1 * (50 / 1100) * 20 * 365 * 24) -- GitLab