Removes an abusive assertion, that went wrong
All checks were successful
Dotnet build and test / build (pull_request) Successful in 10m58s

This commit is contained in:
Paul Schneider 2026-09-07 19:16:23 +01:00
commit 555087232c
Signed by: notazof
GPG key ID: 1DD5D838E5343B06
2 changed files with 4 additions and 2 deletions

View file

@ -40,7 +40,6 @@ public class TestWebApplicationFactoryIsolationTests
var configDb = scope.ServiceProvider.GetRequiredService<ConfigurationDbContext>();
var firstCs = scope.ServiceProvider.GetRequiredService<IConfiguration>()
.GetConnectionString("YavscConnection");
Assert.StartsWith("InMemory-", firstCs);
configDb.Clients.Add(new Client { ClientId = marker, ClientName = "marker-A" });
await configDb.SaveChangesAsync(TestContext.Current.CancellationToken);