Skip to content

Commit

Permalink
fix test 14
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-spiller committed Oct 17, 2019
1 parent 9d79273 commit bd37868
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/correctness/Cor_014/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def execute(self):
# test globbing, handling of directories and archives
self.logAnalyzer([], logfiles=[self.input+'/mydir', self.input+'/archive*'])

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')

def validate(self):
self.checkForAnalyzerErrors()
Expand Down

0 comments on commit bd37868

Please sign in to comment.