Skip to content

Commit 3cde3cc

Browse files
Fix test
1 parent 20e9695 commit 3cde3cc

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/Cli/dotnet/Commands/Test/MSBuildUtility.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ namespace Microsoft.DotNet.Cli.Commands.Test;
1515

1616
internal static class MSBuildUtility
1717
{
18-
private const string dotnetTestVerb = "dotnet-test";
19-
2018
public static (IEnumerable<ParallelizableTestModuleGroupWithSequentialInnerModules> Projects, bool IsBuiltOrRestored) GetProjectsFromSolution(string solutionFilePath, BuildOptions buildOptions)
2119
{
2220
SolutionModel solutionModel = SlnFileFactory.CreateFromFileOrDirectory(solutionFilePath, includeSolutionFilterFiles: true, includeSolutionXmlFiles: true);

test/dotnet.Tests/CommandTests/Test/GivenDotnetTestBuildsAndRunsTestsWithDifferentOptions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,6 @@ public void RunTestProjectSolutionWithBinLogOption_ShouldReturnExitCodeSuccess(s
368368
.Execute("-bl", TestingPlatformOptions.ConfigurationOption.Name, configuration);
369369

370370
Assert.True(File.Exists(string.Format("{0}{1}{2}", testInstance.TestRoot, Path.DirectorySeparatorChar, CliConstants.BinLogFileName)));
371-
Assert.True(File.Exists(string.Format("{0}{1}{2}", testInstance.TestRoot, Path.DirectorySeparatorChar, "msbuild-dotnet-test.binlog")));
372371

373372
result.ExitCode.Should().Be(ExitCodes.Success);
374373
}

0 commit comments

Comments
 (0)