Index: lutinutil/src/test/org/codelutin/i18n/bundle/I18nBundleManagerTest.java diff -u lutinutil/src/test/org/codelutin/i18n/bundle/I18nBundleManagerTest.java:1.2 lutinutil/src/test/org/codelutin/i18n/bundle/I18nBundleManagerTest.java:1.3 --- lutinutil/src/test/org/codelutin/i18n/bundle/I18nBundleManagerTest.java:1.2 Sat Mar 22 23:30:31 2008 +++ lutinutil/src/test/org/codelutin/i18n/bundle/I18nBundleManagerTest.java Sun Mar 23 06:02:24 2008 @@ -181,9 +181,9 @@ public static int getNbURLs() { if (nbURLs == null) { File f; - f = new File("target/test-classes/i18n"); + f = new File("target" + File.separator + "test-classes" + File.separator + "i18n"); nbURLs = f.listFiles().length; - f = new File("target/classes/i18n"); + f = new File("target" + File.separator + "classes" + File.separator + "i18n"); nbURLs += f.listFiles().length; } return nbURLs; @@ -217,9 +217,9 @@ int nbGene = BundleTest.getNbGeneralBundles(); boolean isFr = locale != null && "fr".equals(locale.getLanguage()); boolean isEn = locale != null && "en".equals(locale.getLanguage()); - boolean isFrFR = isFr && locale!=null && "FR".equals(locale.getCountry()); - boolean isEnUS = isEn && locale!=null && "US".equals(locale.getCountry()); - boolean isEnGB = isEn && locale!=null && "GB".equals(locale.getCountry()); + boolean isFrFR = isFr && locale != null && "FR".equals(locale.getCountry()); + boolean isEnUS = isEn && locale != null && "US".equals(locale.getCountry()); + boolean isEnGB = isEn && locale != null && "GB".equals(locale.getCountry()); int nbLang = BundleTest.getNbLanguageBundles(isFr, isEn); int nbFull = BundleTest.gerNbFullBundles(isFrFR, isEnUS, isEnGB);