From fd94384fe3061090f56049fb3f68d33e18442ea9 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Tue, 8 Aug 2023 12:24:28 -0700 Subject: [PATCH] Fix comments --- src/Api/IInputDataPlugin.cs | 2 +- src/Api/MonaiApplicationEntity.cs | 2 +- src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Api/IInputDataPlugin.cs b/src/Api/IInputDataPlugin.cs index 8969f9c47..c2b5b1f9d 100644 --- a/src/Api/IInputDataPlugin.cs +++ b/src/Api/IInputDataPlugin.cs @@ -23,7 +23,7 @@ namespace Monai.Deploy.InformaticsGateway.Api /// /// IInputDataPlugin enables lightweight data processing over incoming data received from supported data ingestion /// services. - /// Refer to for additional details. + /// Refer to for additional details. /// public interface IInputDataPlugin { diff --git a/src/Api/MonaiApplicationEntity.cs b/src/Api/MonaiApplicationEntity.cs index 26fcff014..abf1fba67 100644 --- a/src/Api/MonaiApplicationEntity.cs +++ b/src/Api/MonaiApplicationEntity.cs @@ -73,7 +73,7 @@ public class MonaiApplicationEntity : MongoDBEntityBase public List Workflows { get; set; } = default!; /// - /// Optional list of data input plug-in type names to be executed by the . + /// Optional list of data input plug-in type names to be executed by the . /// public List PluginAssemblies { get; set; } = default!; diff --git a/src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs b/src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs index cddb0b276..2d70b9ec9 100644 --- a/src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs +++ b/src/InformaticsGateway/Test/Plugins/TestInputDataPlugins.cs @@ -45,7 +45,7 @@ public class TestInputDataPluginResumeWorkflow : IInputDataPlugin public class TestInputDataPluginModifyDicomFile : IInputDataPlugin { public static readonly DicomTag ExpectedTag = DicomTag.PatientAddress; - public static readonly string ExpectedValue = "Aborted by TestInputDataPluginModifyDicomFile"; + public static readonly string ExpectedValue = "Added by TestInputDataPluginModifyDicomFile"; public Task<(DicomFile dicomFile, FileStorageMetadata fileMetadata)> Execute(DicomFile dicomFile, FileStorageMetadata fileMetadata) {