comparison Tests/Tests.py @ 472:d9ceb0fd5995

fix
author Alain Mazy <am@osimis.io>
date Wed, 27 Apr 2022 08:46:26 +0200
parents 1a4eb582cf03
children 4ee85b016a40
comparison
equal deleted inserted replaced
471:1a4eb582cf03 472:d9ceb0fd5995
208 208
209 if IsOrthancVersionAbove(_REMOTE, 1, 11, 0): 209 if IsOrthancVersionAbove(_REMOTE, 1, 11, 0):
210 system = DoGet(_REMOTE, '/system') 210 system = DoGet(_REMOTE, '/system')
211 self.assertIn("MainDicomTags", system) 211 self.assertIn("MainDicomTags", system)
212 self.assertIn("Patient", system["MainDicomTags"]) 212 self.assertIn("Patient", system["MainDicomTags"])
213 self.assertIn("Studies", system["MainDicomTags"]) 213 self.assertIn("Study", system["MainDicomTags"])
214 self.assertIn("Series", system["MainDicomTags"]) 214 self.assertIn("Series", system["MainDicomTags"])
215 self.assertIn("Instance", system["MainDicomTags"]) 215 self.assertIn("Instance", system["MainDicomTags"])
216 216
217 systemInfo = DoGet(_REMOTE, '/system') 217 systemInfo = DoGet(_REMOTE, '/system')
218 if systemInfo["Version"] == "mainline": 218 if systemInfo["Version"] == "mainline":