Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
Fix tests from internal API change
Browse files Browse the repository at this point in the history
  • Loading branch information
Redth committed Jan 18, 2019
1 parent e977621 commit af7b032
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/buildtasks/support-annotations-tests/Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ public void Test_Should_Detect_Multiple_Versions_Project_Assets()
[InlineData(24, "24.x")]
[InlineData(25, "25.4.0.2")]
[InlineData(26, "26.1.0.1")]
public async Task Test_Recommended_NuGet_Version(int apiLevel, string expectedVersion)
public void Test_Recommended_NuGet_Version(int apiLevel, string expectedVersion)
{
var v = await NugetPackages.GetRecommendedSupportPackageVersion(apiLevel);
var v = NugetPackages.GetRecommendedSupportPackageVersion(apiLevel);

Assert.Equal(expectedVersion, v);
}
Expand Down

0 comments on commit af7b032

Please sign in to comment.