Mercurial > hg > orthanc-tests
changeset 929:39b1a8e7436c
fix
| author | Alain Mazy <am@orthanc.team> |
|---|---|
| date | Mon, 15 Jun 2026 10:57:44 +0200 |
| parents | 92d0dded0933 |
| children | 101f1b3b9643 |
| files | NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py Mon Jun 15 10:54:23 2026 +0200 +++ b/NewTests/ExtraMainDicomTags/test_extra_main_dicom_tags.py Mon Jun 15 10:57:44 2026 +0200 @@ -106,7 +106,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 - count += int(m.get('orthanc_dicom_cache_hit_count') or '0') + count += int(m.get('orthanc_dicom_parser_cache_hit_count') or '0') print(f"storage access count = {count}") return count
