Archived
0

fix tests

This commit is contained in:
iMoHax
2015-08-25 12:10:32 +03:00
parent 9611120747
commit 3aeda0d8f4
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ import java.util.List;
public class CrawlerTest extends Assert {
private final static Logger LOG = LoggerFactory.getLogger(CrawlerTest.class);
private final static ArrayList<Point> entrys = new ArrayList<>();
private final ArrayList<Point> entrys = new ArrayList<>();
private final static Point x1 = new Point("x1", -40);
private final static Point x2 = new Point("x2", -20);
private final static Point x3 = new Point("x3", -10, true);

View File

@@ -16,7 +16,7 @@ import java.util.Optional;
public class GraphTest extends Assert {
private final static Logger LOG = LoggerFactory.getLogger(GraphTest.class);
private final static ArrayList<Point> entrys = new ArrayList<>();
private final ArrayList<Point> entrys = new ArrayList<>();
private final static Point x1 = new Point("x1",-40);
private final static Point x2 = new Point("x2",-20);
private final static Point x3 = new Point("x3",-10, true);