@@ -34,14 +34,19 @@ public ITestOutputHelper Output
3434 [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/47478" , Queues = HelixConstants . NativeAotNotSupportedHelixQueues ) ]
3535 public async Task WebApiNativeAotTemplateCSharp ( )
3636 {
37- await WebApiNativeAotTemplateCore ( languageOverride : null , additionalEndpointsThatShould200OkForBuiltProjects : new [ ] { "/openapi/v1.json" } ) ;
37+ await WebApiNativeAotTemplateCore (
38+ languageOverride : null ,
39+ additionalEndpointsThatShould200OkForBuiltProjects : new [ ] { "/openapi/v1.json" } ) ;
3840 }
3941
4042 [ ConditionalFact ]
4143 [ SkipOnHelix ( "https://github.com/dotnet/aspnetcore/issues/47478" , Queues = HelixConstants . NativeAotNotSupportedHelixQueues ) ]
4244 public async Task WebApiNativeAotTemplateProgramMainCSharp ( )
4345 {
44- await WebApiNativeAotTemplateCore ( languageOverride : null , args : new [ ] { ArgConstants . UseProgramMain } , additionalEndpointsThatShould200OkForBuiltProjects : new [ ] { "/openapi/v1.json" } ) ;
46+ await WebApiNativeAotTemplateCore (
47+ languageOverride : null ,
48+ args : new [ ] { ArgConstants . UseProgramMain } ,
49+ additionalEndpointsThatShould200OkForBuiltProjects : new [ ] { "/openapi/v1.json" } ) ;
4550 }
4651
4752 [ ConditionalTheory ]
@@ -53,7 +58,10 @@ public async Task WebApiNativeAotTemplateCSharp_OpenApiDisabledInProductionEnvir
5358 ? new [ ] { ArgConstants . UseProgramMain }
5459 : new [ ] { } ;
5560
56- await WebApiNativeAotTemplateCore ( languageOverride : null , args : args , additionalEndpointsThatShould404NotFoundForPublishedProjects : new [ ] { "/openapi/v1.json" } ) ;
61+ await WebApiNativeAotTemplateCore (
62+ languageOverride : null ,
63+ args : args ,
64+ additionalEndpointsThatShould404NotFoundForPublishedProjects : new [ ] { "/openapi/v1.json" } ) ;
5765 }
5866
5967 [ ConditionalTheory ]
0 commit comments