Don't serialize/deserialize invalid order values.

This commit is contained in:
Paulo Gustavo Veiga
2011-05-10 19:28:24 -03:00
parent 84fbe241d0
commit 6b1cafb8fb
4 changed files with 12 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ import org.testng.annotations.Test;
import java.io.*;
@Test
public class ExportTest {
public class FreemindExportTest {
private static final String DATA_DIR_PATH = "src/test/data/wisemaps/";
@Test(dataProvider = "Data-Provider-Function")
@@ -85,7 +85,7 @@ public class ExportTest {
final File[] freeMindFiles = dataDir.listFiles(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.endsWith(".xml");
return name.endsWith(".wxml");
}
});