We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c6c317 commit 9db177dCopy full SHA for 9db177d
tests/test_input.py
@@ -367,7 +367,8 @@ def test_import_thermo_parse_metadata():
367
368
# Read the error logs
369
error_logs = parser.get_error_logs()
370
- assert error_logs[0]['message'] == 'm/z: 202.00000'
+ #assert error_logs[0]['message'] == 'm/z: 202.00000' # This fails as the dictionary is populated in a different order locally or on GIT CI/CD
371
+ assert any(entry['message'] == 'm/z: 202.00000' for entry in error_logs.values())
372
373
# Read the sample information
374
sampleinfo = parser.get_sample_information()
0 commit comments