diff OrthancServer/UnitTestsSources/ServerIndexTests.cpp @ 5044:6fed78e13233

Refactored DicomMap to handle sequences when needed
author Alain Mazy <am@osimis.io>
date Tue, 28 Jun 2022 17:45:09 +0200
parents 28db9663fc2d
children d7274e43ea7c 0ea402b4d901
line wrap: on
line diff
--- a/OrthancServer/UnitTestsSources/ServerIndexTests.cpp	Mon Jun 27 15:22:19 2022 +0200
+++ b/OrthancServer/UnitTestsSources/ServerIndexTests.cpp	Tue Jun 28 17:45:09 2022 +0200
@@ -732,14 +732,13 @@
 
     {
       DicomMap summary;
-      DicomSequencesMap sequences;
       OrthancConfiguration::DefaultExtractDicomSummary(summary, toStore->GetParsedDicomFile());
       toStore->SetOrigin(DicomInstanceOrigin::FromPlugins());
 
       DicomTransferSyntax transferSyntax;
       bool hasTransferSyntax = dicom.LookupTransferSyntax(transferSyntax);
       ASSERT_EQ(StoreStatus_Success, index.Store(
-                  instanceMetadata, summary, sequences, attachments, toStore->GetMetadata(),
+                  instanceMetadata, summary, attachments, toStore->GetMetadata(),
                   toStore->GetOrigin(), false /* don't overwrite */,
                   hasTransferSyntax, transferSyntax, true /* pixel data offset */, 42, false));
     }