Skip to content

Commit 5fa1f18

Browse files
committed
Change to environment dependent test to skip in build environment
1 parent 23be84e commit 5fa1f18

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Extensions/Csv/Cosmos.DataTransfer.CsvExtension.UnitTests/CsvWriterSettingsTests.cs

+5
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@ public void TestCurrentCulture(string culture) {
4949

5050
[TestMethod]
5151
public void TestCurrentCultureByName() {
52+
if (string.IsNullOrEmpty(CultureInfo.CurrentCulture.Name))
53+
{
54+
Assert.Inconclusive("Current culture name in executing environment is empty.");
55+
}
56+
5257
var settings = new CsvWriterSettings() {
5358
Culture = CultureInfo.CurrentCulture.Name
5459
};

0 commit comments

Comments
 (0)