@@ -112,7 +112,7 @@ public void SetSecrets(bool fromCurrentDirectory)
112
112
foreach ( var keyValue in secrets )
113
113
{
114
114
Assert . Contains (
115
- string . Format ( CultureInfo . InvariantCulture , "Successfully saved {0} = {1} to the secret store." , keyValue . Key , keyValue . Value ) ,
115
+ string . Format ( CultureInfo . InvariantCulture , "Successfully saved {0} to the secret store." , keyValue . Key ) ,
116
116
_console . GetOutput ( ) ) ;
117
117
}
118
118
@@ -154,9 +154,9 @@ public void SetSecret_Update_Existing_Secret()
154
154
var secretManager = CreateProgram ( ) ;
155
155
156
156
secretManager . RunInternal ( "set" , "secret1" , "value1" , "-p" , projectPath , "--verbose" ) ;
157
- Assert . Contains ( "Successfully saved secret1 = value1 to the secret store." , _console . GetOutput ( ) ) ;
157
+ Assert . Contains ( "Successfully saved secret1 to the secret store." , _console . GetOutput ( ) ) ;
158
158
secretManager . RunInternal ( "set" , "secret1" , "value2" , "-p" , projectPath , "--verbose" ) ;
159
- Assert . Contains ( "Successfully saved secret1 = value2 to the secret store." , _console . GetOutput ( ) ) ;
159
+ Assert . Contains ( "Successfully saved secret1 to the secret store." , _console . GetOutput ( ) ) ;
160
160
161
161
_console . ClearOutput ( ) ;
162
162
@@ -174,7 +174,7 @@ public void SetSecret_With_Verbose_Flag()
174
174
secretManager . RunInternal ( "-v" , "set" , "secret1" , "value1" , "-p" , projectPath ) ;
175
175
Assert . Contains ( string . Format ( CultureInfo . InvariantCulture , "Project file path {0}." , Path . Combine ( projectPath , "TestProject.csproj" ) ) , _console . GetOutput ( ) ) ;
176
176
Assert . Contains ( string . Format ( CultureInfo . InvariantCulture , "Secrets file path {0}." , PathHelper . GetSecretsPathFromSecretsId ( secretId ) ) , _console . GetOutput ( ) ) ;
177
- Assert . Contains ( "Successfully saved secret1 = value1 to the secret store." , _console . GetOutput ( ) ) ;
177
+ Assert . Contains ( "Successfully saved secret1 to the secret store." , _console . GetOutput ( ) ) ;
178
178
_console . ClearOutput ( ) ;
179
179
180
180
secretManager . RunInternal ( "-v" , "list" , "-p" , projectPath ) ;
@@ -299,7 +299,7 @@ public void Clear_Secrets(bool fromCurrentDirectory)
299
299
foreach ( var keyValue in secrets )
300
300
{
301
301
Assert . Contains (
302
- string . Format ( CultureInfo . InvariantCulture , "Successfully saved {0} = {1} to the secret store." , keyValue . Key , keyValue . Value ) ,
302
+ string . Format ( CultureInfo . InvariantCulture , "Successfully saved {0} to the secret store." , keyValue . Key , keyValue . Value ) ,
303
303
_console . GetOutput ( ) ) ;
304
304
}
305
305
0 commit comments