Skip to content

Commit bd37868

Browse files
committed
fix test 14
1 parent 9d79273 commit bd37868

File tree

1 file changed

+1
-1
lines changed
  • tests/correctness/Cor_014

1 file changed

+1
-1
lines changed

tests/correctness/Cor_014/run.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def execute(self):
77
# test globbing, handling of directories and archives
88
self.logAnalyzer([], logfiles=[self.input+'/mydir', self.input+'/archive*'])
99

10-
self.write_text('valid-log-files.txt', '\n'.join(f for f in os.listdir(self.output+'/loganalyzer_output') if f.startswith('startup_stanza.')), encoding='utf-8')
10+
self.write_text('valid-log-files.txt', '\n'.join(f for f in sorted(os.listdir(self.output+'/loganalyzer_output')) if f.startswith('startup_stanza.')), encoding='utf-8')
1111

1212
def validate(self):
1313
self.checkForAnalyzerErrors()

0 commit comments

Comments
 (0)