File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
test/dotnet.Tests/CommandTests/Tool/Install Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -335,13 +335,13 @@ public void WhenRunWithExistingManifestInConfigDirectoryItShouldAddToExistingMan
335335 manifestPackages . First ( ) . PackageId . Should ( ) . Be ( _packageIdA ) ;
336336
337337 // Verify that the manifest under the .config folder has been updated
338- _fileSystem . File . Exists ( configManifestPath ) . Should ( ) . BeTrue ( "the .config manifest file should exist" ) ;
338+ _fileSystem . File . Exists ( configManifestPath ) . Should ( ) . BeTrue ( "The .config manifest file should exist" ) ;
339339 var configManifestContent = _fileSystem . File . ReadAllText ( configManifestPath ) ;
340- configManifestContent . Should ( ) . Contain ( _packageIdA . ToString ( ) , "the .config manifest should contain the installed tool" ) ;
341- configManifestContent . Should ( ) . NotBe ( _jsonContent , "the .config manifest should have been updated with the new tool" ) ;
340+ configManifestContent . Should ( ) . Contain ( _packageIdA . ToString ( ) , "The .config manifest should contain the installed tool" ) ;
341+ configManifestContent . Should ( ) . NotBe ( _jsonContent , "The .config manifest should have been updated with the new tool" ) ;
342342
343343 // Verify that no manifest exists in the root folder after the install command is run
344- _fileSystem . File . Exists ( _manifestFilePath ) . Should ( ) . BeFalse ( "no manifest should exist in the root folder" ) ;
344+ _fileSystem . File . Exists ( _manifestFilePath ) . Should ( ) . BeFalse ( "No manifest should exist in the root folder" ) ;
345345 }
346346
347347 private ToolInstallLocalCommand GetDefaultTestToolInstallLocalCommand ( )
You can’t perform that action at this time.
0 commit comments