feat(AuthClient): try-start entfernen und Abbruch-Token hinzufügen, um asynchron zu starten

This commit is contained in:
Developer 02
2025-03-11 14:50:10 +01:00
parent 29ad0554bc
commit 4ccf7a20b3
4 changed files with 10 additions and 20 deletions

View File

@@ -104,7 +104,7 @@ public class AuthClientTests
// Stop test server
if (_app is not null)
{
await _app.StopAsync();
await _app.DisposeAsync();
Console.WriteLine("Test server stopped.");
}