Skip to content

Commit 9a72770

Browse files
committed
housekeeping
1 parent da188f4 commit 9a72770

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_apps.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _run_app_test(
6060
if app_name not in _APPS_ROOT_PATHS and app_name in _APPS_OPTIONAL:
6161
self.skipTest('{} directory not found'.format(app_name))
6262
if app_dirname is None:
63-
app_dirname = app_name
63+
app_dirname = app_name.lower()
6464

6565
_suffix = '_ofc' if fall_back_to_ofc else ''
6666

@@ -77,14 +77,14 @@ def test_miranda_io(self):
7777
self._run_app_test('miranda_io')
7878

7979
def test_flash_45(self):
80-
self._run_app_test('FLASH-4.5', 'flash-4.5')
80+
self._run_app_test('FLASH-4.5')
8181

8282
def test_flash_subset(self):
83-
self._run_app_test('FLASH-SUBSET', 'flash-subset')
83+
self._run_app_test('FLASH-SUBSET')
8484

8585
def test_ffb_mini(self):
86-
self._run_app_test('FFB-MINI', 'ffb-mini', 24)
86+
self._run_app_test('FFB-MINI', None, 24)
8787

8888
@unittest.skipIf(platform.system() == 'Windows', 'OFC not available on Windows')
8989
def test_ffb_mini_with_ofc(self):
90-
self._run_app_test('FFB-MINI', 'ffb-mini', 35, True)
90+
self._run_app_test('FFB-MINI', None, 35, True)

0 commit comments

Comments
 (0)