# HG changeset patch # User Alain Mazy # Date 1728045019 -7200 # Node ID 516fdac8027dd67d2e38bf74223c0565c31079f5 # Parent 5bb854db51cf1a8f1959a914afd0808e8ac58536 fix diff -r 5bb854db51cf -r 516fdac8027d Tests/Tests.py --- a/Tests/Tests.py Fri Oct 04 09:00:34 2024 +0200 +++ b/Tests/Tests.py Fri Oct 04 14:30:19 2024 +0200 @@ -8091,6 +8091,9 @@ tagsDefault = GetTags(study, {}) orthancVersion = DoGet(_REMOTE, '/system') ['Version'] + if orthancVersion.startWith('mainline-'): # happens in unstable orthancteam/orthanc images + orthancVersion = 'mainline' + self.assertEqual('Orthanc %s - PS 3.15-2008 Table E.1-1' % orthancVersion, tags2008['0012,0063']) self.assertEqual('Orthanc %s - PS 3.15-2017c Table E.1-1 Basic Profile' % orthancVersion, tags2017c['0012,0063']) self.assertEqual('Orthanc %s - PS 3.15-2021b Table E.1-1 Basic Profile' % orthancVersion, tags2021b['0012,0063'])