Skip to content

Commit ae87bf6

Browse files
DTPOMERSER-1389 Update unit tests
1 parent e5e6752 commit ae87bf6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Common/CurrencyFormatter.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class CurrencyFormatterTests: XCTestCase {
2929
("Australia Currency", "1000000", "AUD", "1,000,000.00"),
3030
("Bangladesh Currency", "1000000", "BDT", "10,00,000.00"),
3131
("Brazil Currency", "1000000", "BRL", "1.000.000,00"),
32-
("Bulgaria Currency", "1000000", "BGN", "1000000,00"),
33-
("Cambodia Currency", "1000000", "KHR", "1.000.000,00"),
32+
("Bulgaria Currency", "1000000", "BGN", "1 000 000,00"),
33+
("Cambodia Currency", "1000000", "KHR", "1,000,000.00"),
3434
("Canada Currency", "1000000", "CAD", "1,000,000.00"),
3535
("Chile Currency", "1000000", "CLP", "1.000.000"),
3636
("China Currency", "1000000", "CNY", "1,000,000.00"),
@@ -68,7 +68,7 @@ class CurrencyFormatterTests: XCTestCase {
6868
("Russia Currency", "1000000", "RUB", "1 000 000,00"),
6969
("Serbia Currency", "1000000", "RSD", "1.000.000,00"),
7070
("Singapore Currency", "1000000", "SGD", "1,000,000.00"),
71-
("South Africa Currency", "1000000", "ZAR", "1 000 000,00"),
71+
("South Africa Currency", "1000000", "ZAR", "1,000,000.00"),
7272
("South Korea Currency", "1000000", "KRW", "1,000,000"),
7373
("Sri Lanka Currency", "1000000", "LKR", "10,00,000.00"),
7474
("Sweden Currency", "1000000", "SEK", "1 000 000,00"),
@@ -99,8 +99,8 @@ class CurrencyFormatterTests: XCTestCase {
9999
("Australia Currency", "1000000", "AUD", "1,000,000.00"),
100100
("Bangladesh Currency", "1000000", "BDT", "10,00,000.00"),
101101
("Brazil Currency", "1000000", "BRL", "1.000.000,00"),
102-
("Bulgaria Currency", "1000000", "BGN", "1000000,00"),
103-
("Cambodia Currency", "1000000", "KHR", "1.000.000,00"),
102+
("Bulgaria Currency", "1000000", "BGN", "1 000 000,00"),
103+
("Cambodia Currency", "1000000", "KHR", "1,000,000.00"),
104104
("Canada Currency", "1000000", "CAD", "1,000,000.00"),
105105
("Chile Currency", "1000000", "CLP", "1.000.000"),
106106
("China Currency", "1000000", "CNY", "1,000,000.00"),
@@ -138,7 +138,7 @@ class CurrencyFormatterTests: XCTestCase {
138138
("Russia Currency", "1000000", "RUB", "1 000 000,00"),
139139
("Serbia Currency", "1000000", "RSD", "1.000.000,00"),
140140
("Singapore Currency", "1000000", "SGD", "1,000,000.00"),
141-
("South Africa Currency", "1000000", "ZAR", "1 000 000,00"),
141+
("South Africa Currency", "1000000", "ZAR", "1,000,000.00"),
142142
("South Korea Currency", "1000000", "KRW", "1,000,000"),
143143
("Sri Lanka Currency", "1000000", "LKR", "10,00,000.00"),
144144
("Sweden Currency", "1000000", "SEK", "1 000 000,00"),

Common/Tests/Extensions/StringTests.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ class StringTests: XCTestCase {
2929
("Australia Currency", "1000000", "AUD", "A$1,000,000.00"),
3030
("Bangladesh Currency", "1000000", "BDT", "Tk10,00,000.00"),
3131
("Brazil Currency", "1000000", "BRL", "R$1.000.000,00"),
32-
("Bulgaria Currency", "1000000", "BGN", "лв.1000000,00"),
33-
("Cambodia Currency", "1000000", "KHR", "៛1.000.000,00"),
32+
("Bulgaria Currency", "1000000", "BGN", "лв.1 000 000,00"),
33+
("Cambodia Currency", "1000000", "KHR", "៛1,000,000.00"),
3434
("Canada Currency", "1000000", "CAD", "$1,000,000.00"),
3535
("Chile Currency", "1000000", "CLP", "$1.000.000"),
3636
("China Currency", "1000000", "CNY", "¥1,000,000.00"),
@@ -68,7 +68,7 @@ class StringTests: XCTestCase {
6868
("Russia Currency", "1000000", "RUB", "руб1 000 000,00"),
6969
("Serbia Currency", "1000000", "RSD", "Дин.1.000.000,00"),
7070
("Singapore Currency", "1000000", "SGD", "S$1,000,000.00"),
71-
("South Africa Currency", "1000000", "ZAR", "R1 000 000,00"),
71+
("South Africa Currency", "1000000", "ZAR", "R1,000,000.00"),
7272
("South Korea Currency", "1000000", "KRW", "₩1,000,000"),
7373
("Sri Lanka Currency", "1000000", "LKR", "රු10,00,000.00"),
7474
("Sweden Currency", "1000000", "SEK", "kr1 000 000,00"),

0 commit comments

Comments
 (0)