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 cf000f2 commit afecebeCopy full SHA for afecebe
src/Tests/Nest.Tests.Unit/BaseJsonTests.cs
@@ -1,7 +1,9 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.Globalization;
4
using System.Linq;
5
using System.Text.RegularExpressions;
6
+using System.Threading;
7
using Elasticsearch.Net;
8
using Elasticsearch.Net.Connection;
9
using NUnit.Framework;
@@ -28,6 +30,7 @@ public class BaseJsonTests
28
30
29
31
public BaseJsonTests()
32
{
33
+ Thread.CurrentThread.CurrentCulture = Thread.CurrentThread.CurrentUICulture = new CultureInfo("en-us");
34
this._settings = new ConnectionSettings(UnitTestDefaults.Uri, UnitTestDefaults.DefaultIndex)
35
.DisablePing()
36
.ExposeRawResponse();
0 commit comments