File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/test/java/net/sf/jsqlparser/statement Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,14 @@ public void testValueOnIssue927() throws JSQLParserException {
6767 @ Test
6868 public void testObject () {
6969 SetStatement setStatement = new SetStatement ();
70- setStatement .add ("standard_conforming_strings" , new ExpressionList (new StringValue ("ON" )),
70+ setStatement .add ("standard_conforming_strings" , new ExpressionList <> (new StringValue ("ON" )),
7171 false );
7272 setStatement .withUseEqual (0 , true ).remove (0 );
7373
7474 assertEquals (0 , setStatement .getCount ());
7575
7676 setStatement .addKeyValuePairs (
77- new SetStatement .NameExpr ("test" , new ExpressionList (new StringValue ("1" )), false ));
77+ new SetStatement .NameExpr ("test" , new ExpressionList <> (new StringValue ("1" )), false ));
7878 setStatement .getKeyValuePairs ().get (0 ).setUseEqual (true );
7979
8080 assertEquals ("test" , setStatement .getKeyValuePairs ().get (0 ).getName ());
You can’t perform that action at this time.
0 commit comments