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:
Marc Prud'hommeaux 2006-08-25 21:35:13 +00:00
parent 96e534a165
commit f37d9f8d61
1 changed files with 3 additions and 3 deletions

View File

@ -44,7 +44,7 @@ public class TestLocalizer extends TestCase {
* Test getting a string for a class.
*/
public void testForClass() {
assertEquals(Locale.getDefault() == Locale.GERMANY
assertEquals(Locale.getDefault().equals(Locale.GERMANY)
? "value1_de" : "value1", _locals.get("test.local1"));
}
@ -63,7 +63,7 @@ public class TestLocalizer extends TestCase {
public void testFallbackLocale() {
Localizer locl = Localizer.forPackage(LocalizerTestHelper.class,
Locale.FRANCE);
assertEquals(Locale.getDefault() == Locale.GERMANY
assertEquals(Locale.getDefault().equals(Locale.GERMANY)
? "value1_de" : "value1", locl.get("test.local1"));
}
@ -80,7 +80,7 @@ public class TestLocalizer extends TestCase {
* Test that the message formatting works correctly.
*/
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",
new String[]{ "x", "y" }));