Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try passing optional params everywhere
  • Loading branch information
captainsafia committed Feb 26, 2025
commit 0fbadccd1443e39e7b5eb20789dbf4bf4ebfdddb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public static async Task VerifyOpenApiDocument(ActionDescriptor action, Action<O
var builder = CreateBuilder();
var documentService = CreateDocumentService(builder, action);
var scopedService = ((TestServiceProvider)builder.ServiceProvider).CreateScope();
var document = await documentService.GetOpenApiDocumentAsync(scopedService.ServiceProvider);
var document = await documentService.GetOpenApiDocumentAsync(scopedService.ServiceProvider, null, default);
verifyOpenApiDocument(document);
}

Expand Down