Skip to content

Commit 089f326

Browse files
committed
formatting
1 parent 1617126 commit 089f326

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

core/queryresultio/text/src/test/java/org/eclipse/rdf4j/query/resultio/text/tsv/SPARQLTSVCustomTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ public void testSES2126QuotedLiteralIntegerAsStringImplicitType() throws Excepti
7373
public void testQuotedXSDStringLiteral() throws Exception {
7474
List<String> bindingNames = List.of("test");
7575
TupleQueryResult tqr = new IteratingTupleQueryResult(bindingNames,
76-
List.of(new ListBindingSet(bindingNames, SimpleValueFactory.getInstance().createLiteral("example", XSD.STRING))));
76+
List.of(new ListBindingSet(bindingNames,
77+
SimpleValueFactory.getInstance().createLiteral("example", XSD.STRING))));
7778
String result = writeTupleResult(tqr);
7879
assertEquals("?test\n\"example\"\n", result);
7980
}
@@ -82,7 +83,8 @@ public void testQuotedXSDStringLiteral() throws Exception {
8283
public void testQuotedXSDStringLiteralWithSpecialCharacters() throws Exception {
8384
List<String> bindingNames = List.of("test");
8485
TupleQueryResult tqr = new IteratingTupleQueryResult(bindingNames,
85-
List.of(new ListBindingSet(bindingNames, SimpleValueFactory.getInstance().createLiteral("example\twith\nspecial\"characters", XSD.STRING))));
86+
List.of(new ListBindingSet(bindingNames, SimpleValueFactory.getInstance()
87+
.createLiteral("example\twith\nspecial\"characters", XSD.STRING))));
8688
String result = writeTupleResult(tqr);
8789
assertEquals("?test\n\"example\\twith\\nspecial\\\"characters\"\n", result);
8890
}

0 commit comments

Comments
 (0)