@@ -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\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 ))));
8688 String result = writeTupleResult (tqr );
8789 assertEquals ("?test\n \" example\\ twith\\ nspecial\\ \" characters\" \n " , result );
8890 }
0 commit comments