Fix incorrect assertion

This commit is contained in:
Antony Male 2015-03-17 12:26:35 +00:00
parent 63a9c4a70f
commit 9fa749f0b7
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ namespace StyletIoC.Internal.RegistrationCollections
lock (this.registrationsLock)
{
// Should have been caught by SingleRegistration.AddRegistration
Debug.Assert(this.registrations.All(x => x.TypeHandle.Equals(registration.TypeHandle)));
Debug.Assert(!this.registrations.Any(x => x.TypeHandle.Equals(registration.TypeHandle)));
this.registrations.Add(registration);
return this;
}