Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/DbContext/ProjectEntityTest.cs =================================================================== diff -u -rbcbae879035d5472efff973990ba1194e38b2ea5 -r4adf3910b91fba2fe6e7f7766836082046ab769a --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/DbContext/ProjectEntityTest.cs (.../ProjectEntityTest.cs) (revision bcbae879035d5472efff973990ba1194e38b2ea5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/DbContext/ProjectEntityTest.cs (.../ProjectEntityTest.cs) (revision 4adf3910b91fba2fe6e7f7766836082046ab769a) @@ -22,20 +22,17 @@ { // Setup const long expectedId = 1024L; - const string expectedName = ""; const string someDescription = ""; const long someTimestamp = 123456789L; var projectEntity = new ProjectEntity { - Name = expectedName, ProjectEntityId = expectedId, Description = someDescription, LastUpdated = someTimestamp }; // Call & Assert - Assert.AreEqual(expectedName, projectEntity.Name); Assert.AreEqual(someDescription, projectEntity.Description); Assert.AreEqual(expectedId, projectEntity.ProjectEntityId); Assert.AreEqual(someTimestamp, projectEntity.LastUpdated);