Skip to content

Commit 434825d

Browse files
committed
test: fix single test runner regression
Refs: #15300
1 parent c79fd2b commit 434825d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def Contains(self, path, file):
789789
if len(path) > len(file):
790790
return False
791791
for i in xrange(len(path)):
792-
if not path[i].match(file[i]):
792+
if not path[i].match(NormalizePath(file[i])):
793793
return False
794794
return True
795795

0 commit comments

Comments
 (0)