Skip to content

Commit

Permalink
CR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sheffer21 committed May 18, 2024
1 parent 5ad342c commit 9569a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BenchmarkDotNet.TestAdapter/BenchmarkExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void RunBenchmarks(string assemblyPath, TestExecutionRecorderWrapper reco
foreach (var benchmarkCase in benchmark.BenchmarksCases)
{
var testId = benchmarkCase.GetTestCaseId();
if (benchmarkIds == null || (benchmarkIds != null && benchmarkIds.Contains(testId)))
if (benchmarkIds == null || benchmarkIds.Contains(testId))
{
filteredCases.Add(benchmarkCase);
testCases.Add(benchmarkCase.ToVsTestCase(assemblyPath, needsJobInfo));
Expand Down

0 comments on commit 9569a62

Please sign in to comment.