Signed-off-by: Bjarke Berg <mail@bergmania.dk>
This commit is contained in:
Bjarke Berg
2020-07-07 15:02:53 +02:00
parent 254921e24c
commit 711e2306e0
2 changed files with 1 additions and 10 deletions

View File

@@ -208,14 +208,6 @@ namespace Umbraco.Tests.Integration.TestServerTest.Controllers
[Test]
public async Task PostUnlockUsers_When_Multiple_UserIds_Supplied_Expect_User_Locked_Out_With_Correct_Response_Message()
{
var xxx = new UserBuilder()
.WithUsername("Admin")
.AddUserGroup()
.WithAlias("writer")
.Done()
.Build();
var numberOfUsers = 3;
var userService = GetRequiredService<IUserService>();

View File

@@ -237,7 +237,7 @@ namespace Umbraco.Tests.Integration.Testing
action();
return;
}
catch (Exception e)
catch (SqlException e)
{
Console.Error.WriteLine($"SqlException occured, but we try again {i+1}/{maxIterations}.\n{e}");
@@ -249,7 +249,6 @@ namespace Umbraco.Tests.Integration.Testing
Debugger.Launch();
throw;
}
}
}
}