File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/Tests/dotnet.Tests/CommandTests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ public void WhenPassingRestoreActionConfigOptions()
76
76
{
77
77
var parseResult = Parser . Instance . Parse ( $ "dotnet tool update -g { _packageId } --ignore-failed-sources") ;
78
78
var toolUpdateCommand = new ToolUpdateGlobalOrToolPathCommand ( parseResult ) ;
79
- toolUpdateCommand . _toolInstallGlobalOrToolPathCommand . _restoreActionConfig . IgnoreFailedSources . Should ( ) . BeTrue ( ) ;
79
+ toolUpdateCommand . _toolInstallGlobalOrToolPathCommand . Value . _restoreActionConfig . IgnoreFailedSources . Should ( ) . BeTrue ( ) ;
80
80
}
81
81
82
82
[ Fact ]
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ public void WhenPassingRestoreActionConfigOptions()
118
118
{
119
119
var parseResult = Parser . Instance . Parse ( $ "dotnet tool update { _packageIdA . ToString ( ) } --ignore-failed-sources") ;
120
120
var command = new ToolUpdateLocalCommand ( parseResult ) ;
121
- command . _toolInstallLocalCommand . _restoreActionConfig . IgnoreFailedSources . Should ( ) . BeTrue ( ) ;
121
+ command . _toolInstallLocalCommand . Value . _restoreActionConfig . IgnoreFailedSources . Should ( ) . BeTrue ( ) ;
122
122
}
123
123
124
124
[ Fact ]
You can’t perform that action at this time.
0 commit comments