Skip to content

Commit

Permalink
Fixed resolving timezones that was impacting performance when parsing…
Browse files Browse the repository at this point in the history
… large calendar files
  • Loading branch information
benfortuna committed Mar 26, 2020
1 parent c9a3068 commit 9e26c33
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -148,7 +148,7 @@ public static Test suite() throws FileNotFoundException {
File[] testFiles = null;

// valid tests..
testFiles = new File("src/test/resources/samples/valid").listFiles(f -> !f.isDirectory() && f.getName().endsWith("japan_west.ics"));
testFiles = new File("src/test/resources/samples/valid").listFiles(f -> !f.isDirectory() && f.getName().endsWith(".ics"));
for (int i = 0; i < testFiles.length; i++) {
log.info("Sample [" + testFiles[i] + "]");
suite.addTest(new CalendarBuilderTest("testBuildValid", testFiles[i].getPath()));
Expand Down

0 comments on commit 9e26c33

Please sign in to comment.