Skip to content

Commit 4d1ab31

Browse files
pcaspersjenkins
authored andcommitted
QPR-12014 fix arguments
1 parent 09ce59a commit 4d1ab31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/PythonTools/compare_files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ def compare_files_direct(name, file_1, file_2):
555555
def compare_files_xml(name, file_1, file_2):
556556
logger = logging.getLogger(__name__)
557557
logger.debug('%s: Comparing file %s against %s using xml diff', name, file_1, file_2)
558-
diff = main.diff_files('file1.xml', 'file2.xml', formatter=formatting.XMLFormatter())
558+
diff = main.diff_files(file_1, file_2, formatter=formatting.XMLFormatter())
559559
match = True
560560
for line in diff:
561561
match = False

0 commit comments

Comments
 (0)