Skip to content

Commit ff048be

Browse files
committed
Fix rebaseline_tests WRT to git submodules
1 parent e82a1fe commit ff048be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/maint/rebaseline_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def main():
8888
filenames = []
8989
for line in output.splitlines():
9090
filename = line.strip().rsplit(' ', 1)[1]
91-
if filename.startswith('test') and os.path.isfile(file):
91+
if filename.startswith('test') and os.path.isfile(filename):
9292
filenames.append(filename)
9393

9494
if args.check_only:

0 commit comments

Comments
 (0)