1
0
mirror of https://github.com/bitwarden/server.git synced 2025-03-20 14:50:03 +01:00

Fix formatting

This commit is contained in:
Bernd Schoolmann 2025-01-31 12:49:58 +01:00
parent 159cb21c69
commit b8e8d27e75
No known key found for this signature in database

View File

@ -25,9 +25,9 @@ public class RotateUserAccountKeysCommandTests
Assert.NotEqual(IdentityResult.Success, result);
}
[Theory, BitAutoData]
[Theory, BitAutoData]
public async Task ThrowsWhenUserIsNull(SutProvider<RotateUserAccountKeysCommand> sutProvider,
RotateUserAccountKeysData model)
RotateUserAccountKeysData model)
{
await Assert.ThrowsAsync<ArgumentNullException>(async () => await sutProvider.Sut.RotateUserAccountKeysAsync(null, model));
}