From 9517e376a23a39f7ee50402fdf596c9f4e3073af Mon Sep 17 00:00:00 2001 From: dotnet-maestro-bot Date: Thu, 13 Jun 2019 18:33:04 -0700 Subject: [PATCH] Make the test input a bit more reasonable (#11096) (#11113) 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 3663d85580e6..e5e9c700ccef 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();