From 23fd988dde2628e5a23b1672561aa29ab694e444 Mon Sep 17 00:00:00 2001 From: Simon G Date: Mon, 5 Sep 2022 12:23:32 +0200 Subject: [PATCH] - remove now invalid test case --- Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs b/Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs index 1ca6ba3..095061c 100644 --- a/Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs +++ b/Test.LightweightIocContainer/FluentFactoryRegistrationTest.cs @@ -142,11 +142,9 @@ public class FluentFactoryRegistrationTest ITestFactory factory = _iocContainer.Resolve(); ITest test = factory.Create(); - ITest test2 = factory.CreateTest(); Assert.IsInstanceOf(factory); Assert.IsInstanceOf(test); - Assert.IsInstanceOf(test2); } [Test]