Skip to content

Commit 0b4530e

Browse files
committed
fix silly mistake
Signed-off-by: Neil South <[email protected]>
1 parent df65034 commit 0b4530e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/InformaticsGateway/Test/Services/Common/InputDataPluginEngineFactoryTest.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,12 @@ public void RegisteredPlugIns_WhenCalled_ReturnsListOfPlugIns()
5757

5858
_output.WriteLine($"result now = {JsonSerializer.Serialize(result)}");
5959

60-
Assert.Equal(3, result.Length);
61-
6260
Assert.Collection(result,
6361
p => VerifyPlugIn(p, typeof(DicomReidentifier)),
6462
p => VerifyPlugIn(p, typeof(TestInputDataPlugInAddWorkflow)),
65-
p => VerifyPlugIn(p, typeof(TestInputDataPlugInResumeWorkflow)),
6663
p => VerifyPlugIn(p, typeof(TestInputDataPlugInModifyDicomFile)),
64+
p => VerifyPlugIn(p, typeof(TestInputDataPlugInResumeWorkflow)),
65+
6766
p => VerifyPlugIn(p, typeof(TestInputDataPlugInVirtualAE)));
6867

6968
_logger.VerifyLogging($"{typeof(IInputDataPlugIn).Name} data plug-in found {typeof(TestInputDataPlugInAddWorkflow).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestInputDataPlugInAddWorkflow).GetShortTypeAssemblyName()}.", LogLevel.Information, Times.Once());

0 commit comments

Comments
 (0)