We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
TypeCacheSerializerTest
1 parent 6a5c039 commit ff3565cCopy full SHA for ff3565c
test/System.Web.Mvc.Test/Test/TypeCacheSerializerTest.cs
@@ -2,6 +2,7 @@
2
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3
4
using System.Collections.Generic;
5
+using System.Globalization;
6
using System.IO;
7
using Microsoft.TestCommon;
8
@@ -138,7 +139,8 @@ public void SerializeTypes()
138
139
+ " </assembly>" + Environment.NewLine
140
+ "</typeCache>";
141
- string expected = String.Format(expectedFormat,
142
+ string expected = String.Format(CultureInfo.InvariantCulture,
143
+ expectedFormat,
144
expectedDate /* lastModified */,
145
GetMvidForType(typeof(TypeCacheSerializer)) /* mvcVersionId */,
146
_mscorlibAsmFullName /* assembly.name */,
0 commit comments