File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/DataFactory/DataFactoryV2.Test/ScenarioTests Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -144,22 +144,22 @@ function Test-SsisAzure-IntegrationRuntime
144
144
$mycreds = New-Object System.Management.Automation.PSCredential($catalogAdminUsername , $secpasswd )
145
145
146
146
# Prepare express custom setup
147
- # Create Cmdkey
147
+ # Create setup for cmdkey
148
148
$targetName = ' fakeserver'
149
149
$userName = ' fakeuser'
150
150
$password = New-Object Microsoft.Azure.Management.DataFactory.Models.SecureString(' fakepassword' )
151
151
$setup1 = New-Object Microsoft.Azure.Management.DataFactory.Models.CmdkeySetup($targetName , $userName , $password )
152
152
153
- # Create Environment Variable
153
+ # Create setup for environment variable
154
154
$variableName = ' name'
155
155
$variableValue = ' value'
156
156
$setup2 = New-Object Microsoft.Azure.Management.DataFactory.Models.EnvironmentVariableSetup($variableName , $variableValue )
157
157
158
- # Create Setup for 3rd party component without license KeyName
158
+ # Create setup for 3rd party component without license Key
159
159
$componentName1 = ' componentName1'
160
160
$setup3 = New-Object Microsoft.Azure.Management.DataFactory.Models.ComponentSetup($componentName1 )
161
161
162
- # Create Setup for 3rd party component with license KeyName
162
+ # Create setup for 3rd party component with license Key
163
163
$componentName2 = ' componentName2'
164
164
$licenseKey = New-Object Microsoft.Azure.Management.DataFactory.Models.SecureString(' fakelicensekey' )
165
165
$setup4 = New-Object Microsoft.Azure.Management.DataFactory.Models.ComponentSetup($componentName2 , $licenseKey )
You can’t perform that action at this time.
0 commit comments