diff OrthancServer/UnitTestsSources/ServerIndexTests.cpp @ 5039:28db9663fc2d

DicomSequencesMap + fix unit tests
author Alain Mazy <am@osimis.io>
date Mon, 27 Jun 2022 10:48:46 +0200
parents d05626038846
children 6fed78e13233
line wrap: on
line diff
--- a/OrthancServer/UnitTestsSources/ServerIndexTests.cpp	Fri Jun 24 16:44:38 2022 +0200
+++ b/OrthancServer/UnitTestsSources/ServerIndexTests.cpp	Mon Jun 27 10:48:46 2022 +0200
@@ -732,13 +732,14 @@
 
     {
       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, attachments, toStore->GetMetadata(),
+                  instanceMetadata, summary, sequences, attachments, toStore->GetMetadata(),
                   toStore->GetOrigin(), false /* don't overwrite */,
                   hasTransferSyntax, transferSyntax, true /* pixel data offset */, 42, false));
     }