From 4925baf41b894220c68f8de256f9e20e24f0be44 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Thu, 19 Jun 2025 16:03:31 +0200 Subject: [PATCH] Fix tests --- test/Api.Test/KeyManagement/Controllers/UsersControllerTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Api.Test/KeyManagement/Controllers/UsersControllerTests.cs b/test/Api.Test/KeyManagement/Controllers/UsersControllerTests.cs index 3dea13a2e5..7f6c72a62f 100644 --- a/test/Api.Test/KeyManagement/Controllers/UsersControllerTests.cs +++ b/test/Api.Test/KeyManagement/Controllers/UsersControllerTests.cs @@ -25,7 +25,7 @@ public class UsersControllerTests SutProvider sutProvider) { sutProvider.GetDependency().GetPublicKeyAsync(Arg.Any()).ReturnsNull(); - await Assert.ThrowsAsync(() => sutProvider.Sut.GetPublicKeyAsync(new Guid()); + await Assert.ThrowsAsync(() => sutProvider.Sut.GetPublicKeyAsync(new Guid())); } [Theory]