@@ -73,7 +73,8 @@ public void testSES2126QuotedLiteralIntegerAsStringImplicitType() throws Excepti
73
73
public void testQuotedXSDStringLiteral () throws Exception {
74
74
List <String > bindingNames = List .of ("test" );
75
75
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 ))));
77
78
String result = writeTupleResult (tqr );
78
79
assertEquals ("?test\n \" example\" \n " , result );
79
80
}
@@ -82,7 +83,8 @@ public void testQuotedXSDStringLiteral() throws Exception {
82
83
public void testQuotedXSDStringLiteralWithSpecialCharacters () throws Exception {
83
84
List <String > bindingNames = List .of ("test" );
84
85
TupleQueryResult tqr = new IteratingTupleQueryResult (bindingNames ,
85
- List .of (new ListBindingSet (bindingNames , SimpleValueFactory .getInstance ().createLiteral ("example\t with\n special\" characters" , XSD .STRING ))));
86
+ List .of (new ListBindingSet (bindingNames , SimpleValueFactory .getInstance ()
87
+ .createLiteral ("example\t with\n special\" characters" , XSD .STRING ))));
86
88
String result = writeTupleResult (tqr );
87
89
assertEquals ("?test\n \" example\\ twith\\ nspecial\\ \" characters\" \n " , result );
88
90
}
0 commit comments