Skip to content

Commit

Permalink
Fixing CompilerInstallation test.
Browse files Browse the repository at this point in the history
  • Loading branch information
saibulusu committed Nov 8, 2024
1 parent e7c1fc5 commit f34a0b0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public async Task CompilerInstallationRunsTheExpectedWorkloadCommandInLinuxForGc
await compilerInstallation.ExecuteAsync(CancellationToken.None).ConfigureAwait(false);
}

Assert.AreEqual(expectedCommands.Count(), commandExecuted);
Assert.AreEqual(9, commandExecuted);
}

[Test]
Expand Down Expand Up @@ -287,7 +287,7 @@ public async Task CompilerInstallationInLinuxDefaultsToGcc10()
await compilerInstallation.ExecuteAsync(CancellationToken.None).ConfigureAwait(false);
}

Assert.AreEqual(expectedCommands.Count(), commandExecuted);
Assert.AreEqual(9, commandExecuted);
}

[Test]
Expand Down

0 comments on commit f34a0b0

Please sign in to comment.