Skip to content

Commit f5f5801

Browse files
Copilotnkolev92
andcommitted
Fix code review: remove unused stdout redirect and fix method name casing
Agent-Logs-Url: https://github.com/NuGet/NuGet.Client/sessions/9ef1f0b8-2661-453f-92d3-d71db5dd4ac2 Co-authored-by: nkolev92 <[email protected]>
1 parent 86cad5e commit f5f5801

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

test/NuGet.Tests.Apex/NuGet.Tests.Apex/NuGetEndToEndTests/NetCoreProjectTestCase.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public async Task InstallPackageFromPMC_TriggersNuGetCacheUpdatedEventAsync()
274274
[Ignore("https://github.com/NuGet/Home/issues/13003")]
275275
[TestMethod]
276276
[Timeout(DefaultTimeout)]
277-
public void NetCoreVSandMSBuildRestoreIsNoOp()
277+
public void NetCoreVSAndMSBuildRestoreIsNoOp()
278278
{
279279
// Arrange
280280
using var testContext = new ApexTestContext(VisualStudio, ProjectTemplate.NetCoreConsoleApp, Logger, addNetStandardFeeds: true);
@@ -292,7 +292,6 @@ public void NetCoreVSandMSBuildRestoreIsNoOp()
292292
process.StartInfo.FileName = "dotnet";
293293
process.StartInfo.Arguments = $"msbuild /t:restore \"{testContext.Project.FullPath}\"";
294294
process.StartInfo.UseShellExecute = false;
295-
process.StartInfo.RedirectStandardOutput = true;
296295
process.StartInfo.RedirectStandardError = true;
297296
process.Start();
298297
string standardError = process.StandardError.ReadToEnd();

0 commit comments

Comments
 (0)