File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 116116 'and' :'and_' ,
117117 'del' :'del_' ,
118118 'elif' :'elif_' ,
119+ 'from' :'from_' ,
119120 'in' :'in_' ,
120121 'is' :'is_' ,
121122 'not' :'not_' ,
133134 'and' :'and_' ,
134135 'del' :'del_' ,
135136 'elif' :'elif_' ,
137+ 'from' :'from_' ,
136138 'in' :'in_' ,
137139 'is' :'is_' ,
138140 'not' :'not_' ,
171173 'and' :'and_' ,
172174 'del' :'del_' ,
173175 'elif' :'elif_' ,
176+ 'from' :'from_' ,
174177 'in' :'in_' ,
175178 'is' :'is_' ,
176179 'not' :'not_' ,
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ public static void main(String[] args) {
1111 String elif = "this is elif" ;
1212 Assert .assertEquals (elif , "this is elif" );
1313
14+ String from = "this is from" ;
15+ Assert .assertEquals (elif , "this is from" );
16+
1417 String in = "this is in" ;
1518 Assert .assertEquals (in , "this is in" );
1619
You can’t perform that action at this time.
0 commit comments