@@ -607,7 +607,7 @@ private async Task<DataFactoryLinkedServiceResource> CreateSalesforceServiceClou
607607
608608 [ Test ]
609609 [ RecordedTest ]
610- public async Task Dataset_SalesforceServiceCloudObject ( )
610+ public async Task Dataset_SalesforceServiceCloudObject_Create ( )
611611 {
612612 await DatasetCreate ( "salesforcec" , CreateSalesforceServiceCloudLinkedService , ( string linkedServiceName ) =>
613613 {
@@ -635,12 +635,13 @@ await DatasetCreate("blob", CreateAzureBlobStorageLinkedService, (string linkedS
635635 FilePattern = BinaryData . FromString ( "\" setOfObjects\" " ) ,
636636 EncodingName = "utf-8" ,
637637 JsonNodeReference = "$.root" ,
638- JsonPathDefinition = BinaryData . FromObjectAsJson ( @"{
639- ""PartitionKey"": ""$.PartitionKey"",
640- ""RowKey"": ""$.RowKey"",
641- ""p1"": ""p1"",
642- ""p2"": ""p2""
643- }" )
638+ JsonPathDefinition = BinaryData . FromObjectAsJson ( new
639+ {
640+ PartitionKey = "$.PartitionKey" ,
641+ RowKey = "$.RowKey" ,
642+ p1 = "p1" ,
643+ p2 = "p2"
644+ } )
644645 }
645646 } ) ;
646647 } ) ;
@@ -1423,7 +1424,7 @@ await DatasetCreate("saptable", CreateSapTableLinkedService, (string linkedServi
14231424
14241425 [ Test ]
14251426 [ RecordedTest ]
1426- public async Task Dataset_DelimitedText_Schema ( )
1427+ public async Task Dataset_DelimitedText_Schema_Create ( )
14271428 {
14281429 await DatasetCreate ( "delimitedtext" , CreateFileServerLinkedService , ( string linkedServiceName ) =>
14291430 {
@@ -1835,7 +1836,7 @@ await DatasetCreate("oracledes", CreateOracleLinkedService, (string linkedServic
18351836
18361837 [ Test ]
18371838 [ RecordedTest ]
1838- public async Task Dataset_AzureSqlTable_TableSchema ( )
1839+ public async Task Dataset_AzureSqlTable_TableSchema_Create ( )
18391840 {
18401841 await DatasetCreate ( "asqlt" , CreateAzureSqlDatabaseLinkedService , ( string linkedServiceName ) =>
18411842 {
0 commit comments