Skip to content

Commit 01facaf

Browse files
committed
TestFunctionInvocation fix
1 parent 113b0e6 commit 01facaf

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed
Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
package liquidjava.rj_language.ast;
22

3-
import java.util.Arrays;
4-
53
import static org.junit.Assert.assertTrue;
6-
7-
import liquidjava.rj_language.opt.Test;
4+
import org.junit.Test;
5+
import java.util.Arrays;
86

97
public 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
}

0 commit comments

Comments
 (0)