@@ -6687,7 +6687,7 @@ public async Task IndexerTypeIsAccurateAndBackwardCompatibleIndexersAreAddedAsyn
66876687 var actorsItemRequestBuilder = actorsItemRequestBuilderNamespace . FindChildByName < CodeClass > ( "actorItemRequestBuilder" ) ;
66886688 Assert . Equal ( actorsCollectionIndexer . ReturnType . Name , actorsItemRequestBuilder . Name ) ;
66896689 }
6690-
6690+
66916691 [ Fact ]
66926692 public async Task IndexerSupportsUnionOfPrimitiveTypesForPathParametersAsync ( )
66936693 {
@@ -6740,23 +6740,23 @@ public async Task IndexerSupportsUnionOfPrimitiveTypesForPathParametersAsync()
67406740 var keysCollectionRequestBuilder = keysCollectionRequestBuilderNamespace . FindChildByName < CodeClass > ( "keysRequestBuilder" ) ;
67416741 var keysCollectionIndexer = keysCollectionRequestBuilder . Indexer ;
67426742 Assert . NotNull ( keysCollectionIndexer ) ;
6743-
6743+
67446744 // Check that the indexer parameter type is a union type containing both string and integer
67456745 var parameterType = keysCollectionIndexer . IndexParameter . Type ;
67466746 Assert . IsType < CodeUnionType > ( parameterType ) ;
67476747 var unionType = ( CodeUnionType ) keysCollectionIndexer . IndexParameter . Type ;
67486748 Assert . Equal ( 2 , unionType . Types . Count ( ) ) ;
6749-
6749+
67506750 // Verify both types are present in the union
67516751 Assert . Contains ( unionType . Types , t => t . Name . Equals ( "string" , StringComparison . OrdinalIgnoreCase ) ) ;
67526752 Assert . Contains ( unionType . Types , t => t . Name . Equals ( "integer" , StringComparison . OrdinalIgnoreCase ) ) ;
6753-
6753+
67546754 // Verify description
67556755 Assert . Equal ( "Either the ID or the fingerprint of an existing SSH key." , keysCollectionIndexer . IndexParameter . Documentation . DescriptionTemplate ) ;
67566756 Assert . False ( keysCollectionIndexer . IndexParameter . Type . IsNullable ) ;
67576757 Assert . False ( keysCollectionIndexer . Deprecation . IsDeprecated ) ;
67586758 }
6759-
6759+
67606760 [ Fact ]
67616761 public async Task IndexerSupportsUnionOfPrimitiveTypesForPathParametersWithOneOfAsync ( )
67626762 {
@@ -6809,23 +6809,23 @@ public async Task IndexerSupportsUnionOfPrimitiveTypesForPathParametersWithOneOf
68096809 var keysCollectionRequestBuilder = keysCollectionRequestBuilderNamespace . FindChildByName < CodeClass > ( "keysRequestBuilder" ) ;
68106810 var keysCollectionIndexer = keysCollectionRequestBuilder . Indexer ;
68116811 Assert . NotNull ( keysCollectionIndexer ) ;
6812-
6812+
68136813 // Check that the indexer parameter type is a union type containing both string and integer
68146814 var parameterType = keysCollectionIndexer . IndexParameter . Type ;
68156815 Assert . IsType < CodeUnionType > ( parameterType ) ;
68166816 var unionType = ( CodeUnionType ) keysCollectionIndexer . IndexParameter . Type ;
68176817 Assert . Equal ( 2 , unionType . Types . Count ( ) ) ;
6818-
6818+
68196819 // Verify both types are present in the union
68206820 Assert . Contains ( unionType . Types , t => t . Name . Equals ( "string" , StringComparison . OrdinalIgnoreCase ) ) ;
68216821 Assert . Contains ( unionType . Types , t => t . Name . Equals ( "integer" , StringComparison . OrdinalIgnoreCase ) ) ;
6822-
6822+
68236823 // Verify description
68246824 Assert . Equal ( "Either the ID or the fingerprint of an existing SSH key." , keysCollectionIndexer . IndexParameter . Documentation . DescriptionTemplate ) ;
68256825 Assert . False ( keysCollectionIndexer . IndexParameter . Type . IsNullable ) ;
68266826 Assert . False ( keysCollectionIndexer . Deprecation . IsDeprecated ) ;
68276827 }
6828-
6828+
68296829 [ Fact ]
68306830 public async Task MapsBooleanEnumToBooleanTypeAsync ( )
68316831 {
0 commit comments