Fixed tests, merged latest

This commit is contained in:
Emma Garland
2021-01-20 17:42:31 +00:00
parent 4cd9fcc36d
commit 6dd5ae910a

View File

@@ -186,7 +186,7 @@ namespace Umbraco.Tests.Integration.Umbraco.Infrastructure.Services
IEnumerable<IMemberGroup> found = MemberService.GetAllRoles();
Assert.AreEqual(1, found.Count());
Assert.AreEqual("MyTestRole", found.Single());
Assert.AreEqual("MyTestRole", found.Single().Name);
}
[Test]
@@ -198,7 +198,7 @@ namespace Umbraco.Tests.Integration.Umbraco.Infrastructure.Services
IEnumerable<IMemberGroup> found = MemberService.GetAllRoles();
Assert.AreEqual(1, found.Count());
Assert.AreEqual("MyTestRole", found.Single());
Assert.AreEqual("MyTestRole", found.Single().Name);
}
[Test]