|
1 | | -package quamina |
| 1 | +package core |
2 | 2 |
|
3 | 3 | import ( |
4 | 4 | "io/ioutil" |
@@ -58,7 +58,7 @@ func TestFJBasic(t *testing.T) { |
58 | 58 | func TestFJ10Lines(t *testing.T) { |
59 | 59 |
|
60 | 60 | geo := fakeMatcher("type", "geometry") |
61 | | - testTrackerSelection(NewFJ(geo), "L0", "../test_data/cl-sample-0", |
| 61 | + testTrackerSelection(NewFJ(geo), "L0", "../testdata/cl-sample-0", |
62 | 62 | []string{"type", "geometry\ntype"}, |
63 | 63 | []string{`"Feature"`, `"Polygon"`}, |
64 | 64 | t) |
@@ -99,13 +99,13 @@ func TestFJ10Lines(t *testing.T) { |
99 | 99 | } |
100 | 100 |
|
101 | 101 | coords := fakeMatcher("coordinates", "geometry") |
102 | | - testTrackerSelection(NewFJ(coords), "L1", "../test_data/cl-sample-1", |
| 102 | + testTrackerSelection(NewFJ(coords), "L1", "../testdata/cl-sample-1", |
103 | 103 | coordNames, coordVals, t) |
104 | 104 |
|
105 | 105 | l2names := []string{"properties\nFROM_ST", "properties\nODD_EVEN"} |
106 | 106 | l2vals := []string{`"1917"`, `"O"`} |
107 | 107 | proFoOd := fakeMatcher("properties", "FROM_ST", "ODD_EVEN") |
108 | | - testTrackerSelection(NewFJ(proFoOd), "L2", "../test_data/cl-sample-2", |
| 108 | + testTrackerSelection(NewFJ(proFoOd), "L2", "../testdata/cl-sample-2", |
109 | 109 | l2names, l2vals, t) |
110 | 110 | } |
111 | 111 |
|
|
0 commit comments