Skip to content

Commit

Permalink
Merge pull request #364 from metafacture/347-templateIssue
Browse files Browse the repository at this point in the history
Delete escape signs in default template for find-fix-paths #347
  • Loading branch information
TobiasNx authored Sep 17, 2024
2 parents 1e697da + a93c793 commit 19bbe2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected void onSetReceiver() {
.setReceiver(new StreamFlattener())
.setReceiver(new StreamToTriples())
.setReceiver(tripleFilter)
.setReceiver(new ObjectTemplate<>("${p}\\t|\\t${o}"))
.setReceiver(new ObjectTemplate<>("${p}\t|\t${o}"))
.setReceiver(getReceiver());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ public FindFixPathsTest() {
@Test
public void testShouldFindPaths() {
verify(
"a\\t|\\tAn ETL test",
"c.2\\t|\\tETL what?");
"a\t|\tAn ETL test",
"c.2\t|\tETL what?");
}

private void processRecord() {
Expand Down

0 comments on commit 19bbe2c

Please sign in to comment.