Skip to content

Commit f5b49fb

Browse files
committed
Tweak test to actually require added TripleSort to pass (#686)
Duplicate field was consecutive by coincidence, since all fields in between were filtered. With added result field we need to sort.
1 parent 67a7e6e commit f5b49fb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

metafix/src/test/java/org/metafacture/metafix/FindFixPathsTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public FindFixPathsTest() {
4747
public void testShouldFindPaths() {
4848
verify(
4949
"a\t|\tAn ETL test",
50+
"a\t|\tAnother ETL test",
5051
"c.2\t|\tETL what?");
5152
}
5253

@@ -61,7 +62,7 @@ private void processRecord() {
6162
finder.literal("c", "ETL what?");
6263
finder.endRecord();
6364
finder.startRecord("2");
64-
finder.literal("a", "An another test");
65+
finder.literal("a", "Another ETL test");
6566
finder.literal("b", "");
6667
finder.literal("b", "Dummi");
6768
finder.literal("b", "Dog");

0 commit comments

Comments
 (0)