Skip to content

Commit 9c38a5d

Browse files
committed
fix tests
1 parent 395b73e commit 9c38a5d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/RestoreCommandTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1694,7 +1694,7 @@ public async Task RestoreCommand_PopulatesProjectFileDependencyGroupsCorrectlyAs
16941694

16951695
// Assert
16961696
Assert.Equal(1, result.LockFile.ProjectFileDependencyGroups.Count);
1697-
Assert.Equal(".NETFramework,Version=v4.5", result.LockFile.ProjectFileDependencyGroups[0].FrameworkName);
1697+
Assert.Equal("net45", result.LockFile.ProjectFileDependencyGroups[0].FrameworkName);
16981698
Assert.Equal(new[] { "Newtonsoft.Json >= 6.0.4" }, result.LockFile.ProjectFileDependencyGroups[0].Dependencies.ToArray());
16991699
}
17001700
}

test/NuGet.Core.FuncTests/NuGet.Commands.FuncTest/compiler/resources/uwpBlankAppV2.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16898,7 +16898,7 @@
1689816898
}
1689916899
},
1690016900
"projectFileDependencyGroups": {
16901-
"UAP,Version=v10.0": [
16901+
"uap10.0": [
1690216902
"Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0"
1690316903
]
1690416904
},

0 commit comments

Comments
 (0)