Skip to content

Commit ef9e651

Browse files
author
Ivan Liu
committed
update comments
1 parent fd4b1d7 commit ef9e651

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DataFactory/DataFactoryV2.Test/ScenarioTests/IntegrationRuntimeTests.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,22 +144,22 @@ function Test-SsisAzure-IntegrationRuntime
144144
$mycreds = New-Object System.Management.Automation.PSCredential($catalogAdminUsername, $secpasswd)
145145

146146
# Prepare express custom setup
147-
# Create Cmdkey
147+
# Create setup for cmdkey
148148
$targetName = 'fakeserver'
149149
$userName = 'fakeuser'
150150
$password = New-Object Microsoft.Azure.Management.DataFactory.Models.SecureString('fakepassword')
151151
$setup1 = New-Object Microsoft.Azure.Management.DataFactory.Models.CmdkeySetup($targetName, $userName, $password)
152152

153-
# Create Environment Variable
153+
# Create setup for environment variable
154154
$variableName = 'name'
155155
$variableValue = 'value'
156156
$setup2 = New-Object Microsoft.Azure.Management.DataFactory.Models.EnvironmentVariableSetup($variableName, $variableValue)
157157

158-
# Create Setup for 3rd party component without license KeyName
158+
# Create setup for 3rd party component without license Key
159159
$componentName1 = 'componentName1'
160160
$setup3 = New-Object Microsoft.Azure.Management.DataFactory.Models.ComponentSetup($componentName1)
161161

162-
# Create Setup for 3rd party component with license KeyName
162+
# Create setup for 3rd party component with license Key
163163
$componentName2 = 'componentName2'
164164
$licenseKey = New-Object Microsoft.Azure.Management.DataFactory.Models.SecureString('fakelicensekey')
165165
$setup4 = New-Object Microsoft.Azure.Management.DataFactory.Models.ComponentSetup($componentName2, $licenseKey)

0 commit comments

Comments
 (0)