Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Chang <[email protected]>
  • Loading branch information
mocsharp committed Aug 8, 2023
1 parent 8771dab commit f8a682b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Api/IInputDataPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Monai.Deploy.InformaticsGateway.Api
/// <summary>
/// <c>IInputDataPlugin</c> enables lightweight data processing over incoming data received from supported data ingestion
/// services.
/// Refer to <see cref="IOutputDataPluginEngine" /> for additional details.
/// Refer to <see cref="IInputDataPluginEngine" /> for additional details.
/// </summary>
public interface IInputDataPlugin
{
Expand Down
2 changes: 1 addition & 1 deletion src/Api/MonaiApplicationEntity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class MonaiApplicationEntity : MongoDBEntityBase
public List<string> Workflows { get; set; } = default!;

/// <summary>
/// Optional list of data input plug-in type names to be executed by the <see cref="IOutputDataPluginEngine"/>.
/// Optional list of data input plug-in type names to be executed by the <see cref="IInputDataPluginEngine"/>.
/// </summary>
public List<string> PluginAssemblies { get; set; } = default!;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit f8a682b

Please sign in to comment.