Skip to content

Commit a7e5516

Browse files
authoredSep 21, 2020
QuantityFormatterTests: Formatting the 'expected' values using the CurrentUICulture (#839)
1 parent f3c61d3 commit a7e5516

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎UnitsNet.Tests/QuantityFormatterTests.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Licensed under MIT No Attribution, see LICENSE file at the root.
22
// Copyright 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). Maintained at https://github.com/angularsen/UnitsNet.
33

4+
using System.Globalization;
45
using Xunit;
56

67
namespace UnitsNet.Tests
@@ -108,7 +109,7 @@ public static void StandardNumericFormatStrings_Equals_ValueWithFormatStringAndA
108109
{
109110
var length = Length.FromMeters(123456789.987654321);
110111

111-
var expected = string.Format($"{{0:{format}}} {{1:a}}", length.Value, length);
112+
var expected = string.Format(CultureInfo.CurrentUICulture, $"{{0:{format}}} {{1:a}}", length.Value, length);
112113
Assert.Equal(expected, QuantityFormatter.Format(length, format));
113114
}
114115

@@ -132,7 +133,7 @@ public static void CustomNumericFormatStrings_Equals_ValueWithFormatStringAndAbb
132133
{
133134
var length = Length.FromMeters(123456789.987654321);
134135

135-
var expected = string.Format($"{{0:{format}}} {{1:a}}", length.Value, length);
136+
var expected = string.Format(CultureInfo.CurrentUICulture, $"{{0:{format}}} {{1:a}}", length.Value, length);
136137
Assert.Equal(expected, QuantityFormatter.Format(length, format));
137138
}
138139
}

0 commit comments

Comments
 (0)