From b7fc5f06cd6d74f97c1b45b19f3bda20c9198bc1 Mon Sep 17 00:00:00 2001 From: John Luo Date: Thu, 10 Mar 2016 15:15:56 -0800 Subject: [PATCH] Fix test with mismatched literal type --- .../Constraints/RangeRouteConstraintTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs b/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs index 95cd97a863..99d9c64ba1 100644 --- a/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs +++ b/test/Microsoft.AspNetCore.Routing.Tests/Constraints/RangeRouteConstraintTests.cs @@ -42,7 +42,7 @@ namespace Microsoft.AspNetCore.Routing.Tests () => new RangeRouteConstraint(3, 2), "min", expectedMessage, - 3); + 3L); } } }