From ed827c001213781c775f8bc9256a97837c498edf Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Thu, 21 Sep 2017 10:04:33 -0700 Subject: [PATCH] Fix bug in test data --- .../TypeForwardingActivatorTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.DataProtection.Test/TypeForwardingActivatorTests.cs b/test/Microsoft.AspNetCore.DataProtection.Test/TypeForwardingActivatorTests.cs index d985c130f3..ab5252b1f2 100644 --- a/test/Microsoft.AspNetCore.DataProtection.Test/TypeForwardingActivatorTests.cs +++ b/test/Microsoft.AspNetCore.DataProtection.Test/TypeForwardingActivatorTests.cs @@ -146,7 +146,7 @@ namespace Microsoft.AspNetCore.DataProtection new Version(Math.Max(0, current.Major - 1), 0, 0, 0), new Version(current.Major + 1, 0, 0, 0), new Version(current.Major, current.Minor + 1, 0, 0), - new Version(current.Major, current.Minor, current.Revision + 1, 0), + new Version(current.Major, current.Minor, current.Build + 1, 0), }; } }