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 {
67
67
@ Test
68
68
public void testObject () {
69
69
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" )),
71
71
false );
72
72
setStatement .withUseEqual (0 , true ).remove (0 );
73
73
74
74
assertEquals (0 , setStatement .getCount ());
75
75
76
76
setStatement .addKeyValuePairs (
77
- new SetStatement .NameExpr ("test" , new ExpressionList (new StringValue ("1" )), false ));
77
+ new SetStatement .NameExpr ("test" , new ExpressionList <> (new StringValue ("1" )), false ));
78
78
setStatement .getKeyValuePairs ().get (0 ).setUseEqual (true );
79
79
80
80
assertEquals ("test" , setStatement .getKeyValuePairs ().get (0 ).getName ());
You can’t perform that action at this time.
0 commit comments