Make the test input a bit more reasonable (#11096)

Fixes https://github.com/aspnet/AspNetCore-Internal/issues/2626
This commit is contained in:
Pranav K 2019-06-11 14:35:20 -07:00 committed by Artak
parent dab998e7d2
commit d805ee112b
1 changed files with 1 additions and 1 deletions

View File

@ -351,7 +351,7 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding.Binders
var bindingContext = GetBindingContext(destinationType); var bindingContext = GetBindingContext(destinationType);
bindingContext.ValueProvider = new SimpleValueProvider(new CultureInfo("fr-FR")) bindingContext.ValueProvider = new SimpleValueProvider(new CultureInfo("fr-FR"))
{ {
{ "theModelName", "32 000,1" } { "theModelName", "32000,1" }
}; };
var binder = GetBinder(); var binder = GetBinder();