Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/aspnetcore.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2019-06-12 00:36:23 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2019-06-12 00:36:23 +0300
commit800f3803256081ab3e44ac6e4c4b2713856d1c30 (patch)
tree2e7fc5214bc409ffeee82dca18a666f257c18153
parent07b26f32f3d637f2f24a15b41fcef491d24b17dd (diff)
parentd805ee112b9961fe19b693a3d5ce065c7ee71894 (diff)
Merge in 'release/2.1' changes
-rw-r--r--src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs b/src/Mvc/Mvc.Core/test/ModelBinding/Binders/FloatingPointTypeModelBinderTestOfT.cs
index 688eb026a5..c4c93f12f9 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 @@ namespace Microsoft.AspNetCore.Mvc.ModelBinding.Binders
var bindingContext = GetBindingContext(destinationType);
bindingContext.ValueProvider = new SimpleValueProvider(new CultureInfo("fr-FR"))
{
- { "theModelName", "32 000,1" }
+ { "theModelName", "32000,1" }
};
var binder = GetBinder();