From c9a5c95cd6efebcfa0c5393cef6db53b16e031a8 Mon Sep 17 00:00:00 2001 From: Faizan Ahmad Date: Wed, 9 Nov 2016 01:23:46 +0530 Subject: [PATCH] Updated test to reflect xunit version change --- .../Rules/GivenThatIWantToMigratePackageDependencies.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigratePackageDependencies.cs b/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigratePackageDependencies.cs index 35a9abd5e..c4a15a67c 100644 --- a/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigratePackageDependencies.cs +++ b/test/Microsoft.DotNet.ProjectJsonMigration.Tests/Rules/GivenThatIWantToMigratePackageDependencies.cs @@ -312,12 +312,12 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Tests mockProj.Items.Should().ContainSingle( i => (i.Include == "xunit" && i.ItemType == "PackageReference" && - i.GetMetadataWithName("Version").Value == "2.2.0-beta3-build3402")); + i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build3444")); mockProj.Items.Should().ContainSingle( i => (i.Include == "xunit.runner.visualstudio" && i.ItemType == "PackageReference" && - i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build1188")); + i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build1194")); mockProj.Items.Should().NotContain( i => (i.Include == "MSTest.TestAdapter" && i.ItemType == "PackageReference")); @@ -351,12 +351,12 @@ namespace Microsoft.DotNet.ProjectJsonMigration.Tests mockProj.Items.Should().ContainSingle( i => (i.Include == "xunit" && i.ItemType == "PackageReference" && - i.GetMetadataWithName("Version").Value == "2.2.0-beta3-build3402")); + i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build3444")); mockProj.Items.Should().ContainSingle( i => (i.Include == "xunit.runner.visualstudio" && i.ItemType == "PackageReference" && - i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build1188")); + i.GetMetadataWithName("Version").Value == "2.2.0-beta4-build1194")); mockProj.Items.Should().NotContain( i => (i.Include == "MSTest.TestAdapter" && i.ItemType == "PackageReference"));