Skip to content

Commit 8ad435c

Browse files
dsplaistedjoeloff
andauthored
Code review feedback
Co-authored-by: Jacques Eloff <[email protected]>
1 parent 9099124 commit 8ad435c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/dotnet.Tests/CommandTests/Tool/Install/ToolInstallLocalCommandTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)