File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
liquidjava-verifier/src/test/java/liquidjava/rj_language/ast Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 11package liquidjava .rj_language .ast ;
22
3- import java .util .Arrays ;
4-
53import static org .junit .Assert .assertTrue ;
6-
7- import liquidjava . rj_language . opt . Test ;
4+ import org . junit . Test ;
5+ import java . util . Arrays ;
86
97public class TestFunctionInvocation {
108 @ Test
11- public void testFunctionInvocationEqualsAndHashcode (){
9+ public void testFunctionInvocationEqualsAndHashcode () {
1210 Expression exp1 = new LiteralString ("./testFiles/file.txt" );
1311 Expression exp2 = new LiteralString ("./testFiles/file_fake.txt" );
1412
@@ -19,5 +17,5 @@ public void testFunctionInvocationEqualsAndHashcode(){
1917 assertTrue (f1 .equals (f2 ) && !f1 .equals (f3 ));
2018 assertTrue (f1 .hashCode () == f2 .hashCode () && f1 .hashCode () != f3 .hashCode ());
2119 }
22-
20+
2321}
You can’t perform that action at this time.
0 commit comments