Skip to content

Commit a1d63c2

Browse files
committed
Fixed I18NTest
1 parent 5f6cbfb commit a1d63c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/test/processing/app/I18NTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class I18NTest {
99

1010
private Set<String> loadReferenceI18NKeys() throws IOException {
1111
Properties properties = new Properties();
12-
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./Resources_en.properties").getFile())));
12+
properties.putAll(loadProperties(new File(I18NTest.class.getResource("./i18n/Resources_en.properties").getFile())));
1313
Set<String> keys = new HashSet<String>();
1414
for (Object key : properties.keySet()) {
1515
keys.add(key.toString());

0 commit comments

Comments
 (0)