# HG changeset patch # User Alain Mazy # Date 1784293544 -7200 # Node ID d1259f584f1ef9967c51d0724b2be98f256a1a01 # Parent 3a440ee47213f7646ee28b2cc3423a84557a96fb# Parent e6666a9679c3cacb34cc7e80586fa64e281e5b3b merge diff -r e6666a9679c3 -r d1259f584f1e NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py --- a/NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py Tue Jul 07 11:00:33 2026 +0200 +++ b/NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py Fri Jul 17 15:05:44 2026 +0200 @@ -105,7 +105,7 @@ count = int(m.get('orthanc_storage_cache_hit_count') or '0') + int(m.get('orthanc_storage_cache_miss_count') or '0') - if self.o.get_system()["ApiVersion"] >= 32: # 1.12.11+ and 32 = streaming branch + if self.o.get_system()["ApiVersion"] >= 34: # 1.13.0 and 34 = streaming branch count += int(m.get('orthanc_dicom_parser_cache_hit_count') or '0') print(f"storage access count = {count}") diff -r e6666a9679c3 -r d1259f584f1e NewTests/InterruptedDownloads/test_interrupted_downloads.py --- a/NewTests/InterruptedDownloads/test_interrupted_downloads.py Tue Jul 07 11:00:33 2026 +0200 +++ b/NewTests/InterruptedDownloads/test_interrupted_downloads.py Fri Jul 17 15:05:44 2026 +0200 @@ -81,7 +81,7 @@ def test_interrupting_a_download_should_cancel_the_archive_job(self): # note: there was a regression between 1.12.10 and 1.12.11 - if self.o.is_orthanc_version_at_least(1, 12, 12) and self.o.get_system()["ApiVersion"] >= 32: # 1.12.11+ and 32 = streaming branch + if self.o.is_orthanc_version_at_least(1, 12, 12) and self.o.get_system()["ApiVersion"] >= 34: # 1.13.0 and 34 = streaming branch self.o.delete_all_content() populator = OrthancTestDbPopulator(self.o, studies_count=1, series_count=2, instances_count=200, random_seed=65) populator.execute() @@ -98,7 +98,7 @@ def test_interrupting_a_download_should_release_the_http_thread(self): # note: there was a regression between 1.12.10 and 1.12.11 - if self.o.is_orthanc_version_at_least(1, 12, 12) and self.o.get_system()["ApiVersion"] >= 32: # 1.12.11+ and 32 = streaming branch + if self.o.is_orthanc_version_at_least(1, 12, 12) and self.o.get_system()["ApiVersion"] >= 34: # 1.13.0 and 34 = streaming branch self.o.delete_all_content() populator = OrthancTestDbPopulator(self.o, studies_count=1, series_count=2, instances_count=200, random_seed=65) populator.execute()