We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d79273 commit bd37868Copy full SHA for bd37868
tests/correctness/Cor_014/run.py
@@ -7,7 +7,7 @@ def execute(self):
7
# test globbing, handling of directories and archives
8
self.logAnalyzer([], logfiles=[self.input+'/mydir', self.input+'/archive*'])
9
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')
+ 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')
11
12
def validate(self):
13
self.checkForAnalyzerErrors()
0 commit comments