Skip to content

Commit

Permalink
test: fix single test runner regression
Browse files Browse the repository at this point in the history
Refs: #15300
  • Loading branch information
TimothyGu committed Sep 11, 2017
1 parent c79fd2b commit 434825d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ def Contains(self, path, file):
if len(path) > len(file):
return False
for i in xrange(len(path)):
if not path[i].match(file[i]):
if not path[i].match(NormalizePath(file[i])):
return False
return True

Expand Down

0 comments on commit 434825d

Please sign in to comment.