diff --git a/src/InformaticsGateway/Test/Services/Common/ExternalAppPluginTest.cs b/src/InformaticsGateway/Test/Services/Common/ExternalAppPluginTest.cs index 95fe4df82..a46eeb26a 100755 --- a/src/InformaticsGateway/Test/Services/Common/ExternalAppPluginTest.cs +++ b/src/InformaticsGateway/Test/Services/Common/ExternalAppPluginTest.cs @@ -253,11 +253,13 @@ public async Task ExternalAppPlugin_Should_Repare_StudyUid() _repository.Setup(r => r.GetAsync(It.IsAny(), It.IsAny())) .Returns(Task.FromResult(remoteAppExecution)); + var _type = "Monai.Deploy.InformaticsGateway.ExecutionPlugins.ExternalAppIncoming, Monai.Deploy.InformaticsGateway, Version=0.0.0.0"; + var pluginEngine = new InputDataPluginEngine( _serviceProvider, new Mock>().Object); - pluginEngine.Configure(new List() { typeof(ExternalAppIncoming).AssemblyQualifiedName }); + pluginEngine.Configure(new List() { _type }); var (resultDicomFile, resultDicomInfo) = await pluginEngine.ExecutePlugins(dicomFile, dicomInfo);