mirror of https://github.com/apache/openjpa.git
Fixed to use equals() instead of == for testing the type of the current Locale.
git-svn-id: https://svn.apache.org/repos/asf/incubator/openjpa/trunk@436962 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
96e534a165
commit
f37d9f8d61
|
@ -44,7 +44,7 @@ public class TestLocalizer extends TestCase {
|
||||||
* Test getting a string for a class.
|
* Test getting a string for a class.
|
||||||
*/
|
*/
|
||||||
public void testForClass() {
|
public void testForClass() {
|
||||||
assertEquals(Locale.getDefault() == Locale.GERMANY
|
assertEquals(Locale.getDefault().equals(Locale.GERMANY)
|
||||||
? "value1_de" : "value1", _locals.get("test.local1"));
|
? "value1_de" : "value1", _locals.get("test.local1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ public class TestLocalizer extends TestCase {
|
||||||
public void testFallbackLocale() {
|
public void testFallbackLocale() {
|
||||||
Localizer locl = Localizer.forPackage(LocalizerTestHelper.class,
|
Localizer locl = Localizer.forPackage(LocalizerTestHelper.class,
|
||||||
Locale.FRANCE);
|
Locale.FRANCE);
|
||||||
assertEquals(Locale.getDefault() == Locale.GERMANY
|
assertEquals(Locale.getDefault().equals(Locale.GERMANY)
|
||||||
? "value1_de" : "value1", locl.get("test.local1"));
|
? "value1_de" : "value1", locl.get("test.local1"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ public class TestLocalizer extends TestCase {
|
||||||
* Test that the message formatting works correctly.
|
* Test that the message formatting works correctly.
|
||||||
*/
|
*/
|
||||||
public void testMessageFormat() {
|
public void testMessageFormat() {
|
||||||
String suffix = Locale.getDefault() == Locale.GERMANY ? "_de" : "";
|
String suffix = Locale.getDefault().equals(Locale.GERMANY) ? "_de" : "";
|
||||||
|
|
||||||
assertEquals("value2" + suffix + " x sep y", _locals.get("test.local2",
|
assertEquals("value2" + suffix + " x sep y", _locals.get("test.local2",
|
||||||
new String[]{ "x", "y" }));
|
new String[]{ "x", "y" }));
|
||||||
|
|
Loading…
Reference in New Issue