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.
1 parent 3e61104 commit 288bb96Copy full SHA for 288bb96
src/SignalR/common/SignalR.Common/test/Internal/Protocol/JsonHubProtocolTestsBase.cs
@@ -4,6 +4,7 @@
4
using System;
5
using System.Buffers;
6
using System.Collections.Generic;
7
+using System.Globalization;
8
using System.IO;
9
using System.Linq;
10
using System.Text;
@@ -310,7 +311,7 @@ public void ReadCaseInsensitivePropertiesByDefault()
310
311
IntProp = 43,
312
DoubleProp = 3.14159,
313
StringProp = "test",
- DateTimeProp = DateTime.Parse("6/3/2019 10:00:00 PM")
314
+ DateTimeProp = DateTime.Parse("6/3/2019 10:00:00 PM", CultureInfo.InvariantCulture)
315
}, streamItemMessage.Item);
316
}
317
0 commit comments