Skip to content

Commit

Permalink
changed CollationIdentifier
Browse files Browse the repository at this point in the history
  • Loading branch information
ilicmarkodb committed Sep 5, 2024
1 parent c6bd336 commit 5e0e43e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ class CollationIdentifierSuite extends AnyFunSuite {
),
(
new CollationIdentifier(PROVIDER_ICU, "sr_Cyrl_SRB", Optional.empty()),
s"$PROVIDER_ICU.sr_Cyrl_SRB"
s"$PROVIDER_ICU.SR_CYRL_SRB"
),
(
new CollationIdentifier(PROVIDER_ICU, "sr_Cyrl_SRB", Optional.of("75.1")),
s"$PROVIDER_ICU.sr_Cyrl_SRB"
s"$PROVIDER_ICU.SR_CYRL_SRB"
)
).foreach {
case(collationIdentifier, toStringWithoutVersion) =>
Expand All @@ -82,11 +82,11 @@ class CollationIdentifierSuite extends AnyFunSuite {
),
(
new CollationIdentifier(PROVIDER_ICU, "sr_Cyrl_SRB", Optional.empty()),
s"$PROVIDER_ICU.sr_Cyrl_SRB"
s"$PROVIDER_ICU.SR_CYRL_SRB"
),
(
new CollationIdentifier(PROVIDER_ICU, "sr_Cyrl_SRB", Optional.of("75.1")),
s"$PROVIDER_ICU.sr_Cyrl_SRB.75.1"
s"$PROVIDER_ICU.SR_CYRL_SRB.75.1"
)
).foreach {
case(collationIdentifier, toString) =>
Expand Down

0 comments on commit 5e0e43e

Please sign in to comment.