From d805ee112b9961fe19b693a3d5ce065c7ee71894 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 11 Jun 2019 14:35:20 -0700 Subject: [PATCH] Make the test input a bit more reasonable (#11096) Fixes https://github.com/aspnet/AspNetCore-Internal/issues/2626 --- .../ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs b/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs index 688eb026a5a0..c4c93f12f9eb 100644 --- a/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs +++ b/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs @@ -351,7 +351,7 @@ public async Task BindModel_ReturnsModel_IfAttemptedValueIsValid_FrenchThirtyTwo var bindingContext = GetBindingContext(destinationType); bindingContext.ValueProvider = new SimpleValueProvider(new CultureInfo("fr-FR")) { - { "theModelName", "32 000,1" } + { "theModelName", "32000,1" } }; var binder = GetBinder();