Skip to content

Commit b952d45

Browse files
committed
Fix FormatUsingDefaults /2
Signed-off-by: Roberto Paterlini <[email protected]>
1 parent 2efcd09 commit b952d45

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: test/Spring/Spring.Core.Tests/Globalization/Formatters/CurrencyFormatterTests.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ public void FormatUsingDefaults()
6565

6666
fmt = new CurrencyFormatter(CultureInfoUtils.SerbianCyrillicCultureName);
6767

68-
Assert.AreEqual("1.234 RSD", fmt.Format(1234));
69-
Assert.AreEqual("1.235 RSD", fmt.Format(1234.56));
70-
Assert.AreEqual("-1.234 RSD", fmt.Format(-1234));
71-
Assert.AreEqual("-1.235 RSD", fmt.Format(-1234.56));
68+
Assert.AreEqual("1.234,00 дин.", fmt.Format(1234));
69+
Assert.AreEqual("1.234,56 дин.", fmt.Format(1234.56));
70+
Assert.AreEqual("-1.234,00 дин.", fmt.Format(-1234));
71+
Assert.AreEqual("-1.234,56 дин.", fmt.Format(-1234.56));
7272
}
7373

7474
[Test]

0 commit comments

Comments
 (0)