Skip to content

Added the testcase for LDEV-5486 #2543

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 7.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added the testcase for LDEV-5486
cfmitrah committed Apr 10, 2025
commit 657166e3d08acf3811c39c8687d0e038f88a13ec
7 changes: 7 additions & 0 deletions test/functions/LSEuroCurrencyFormat.cfc
Original file line number Diff line number Diff line change
@@ -47,6 +47,13 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="currency" {
assertEquals("1,20", "#LSEuroCurrencyFormat(1.2,"none")#");
setLocale(orgLocale);
});

//TestCase for LDEV-5486
it(title="test Suite for LDEV-5486", skip=true, body = function( currentSpec ) {
setLocale( "English (United States)" );
assertEquals( "USD 1.20", "#LSEuroCurrencyFormat( 1.2,"international","" )#" ); //expected USD 1.20 But it return XXX 1.20
setLocale( orgLocale );
});
});
}