Fix test failure.
The most recent SDK for 2.2.1xx pinned netstandard.library to 2.0.3 due to https://github.com/dotnet/sdk/issues/2410. This commit changes the expected version to match.
This commit is contained in:
parent
77739c4db3
commit
29ee450c70
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ namespace Microsoft.DotNet.New.Tests
|
|||
// Remove the expectedVersion parameter once we have templates targetting netcoreapp2.2.
|
||||
[Theory]
|
||||
[InlineData("console", "microsoft.netcore.app", "2.1.0")]
|
||||
[InlineData("classlib", "netstandard.library", null)]
|
||||
[InlineData("classlib", "netstandard.library", "2.0.3")] // FIXME: This is pinned to 2.0.3 due to https://github.com/dotnet/sdk/issues/2410
|
||||
public void NewProjectRestoresCorrectPackageVersion(string type, string packageName, string expectedVersion)
|
||||
{
|
||||
var rootPath = TestAssets.CreateTestDirectory(identifier: $"_{type}").FullName;
|
||||
|
|
Loading…
Reference in a new issue