Remove an apparently unneeded normcase() call.

I believe this call is unneeded after https://reviews.llvm.org/D34855.

Reviewed as part of https://reviews.llvm.org/D78169
This commit is contained in:
Nico Weber 2020-04-15 14:02:01 -04:00
parent 8e7d771cf9
commit f42baaab4f
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ kIsWindows = sys.platform in ['win32', 'cygwin']
class GoogleTest(TestFormat):
def __init__(self, test_sub_dirs, test_suffix):
self.test_sub_dirs = os.path.normcase(str(test_sub_dirs)).split(';')
self.test_sub_dirs = str(test_sub_dirs).split(';')
# On Windows, assume tests will also end in '.exe'.
exe_suffix = str(test_suffix)