Skip to content

Commit 8d8fff4

Browse files
committed
Fixes compilation errors.
1 parent 312030e commit 8d8fff4

File tree

1 file changed

+2
-2
lines changed
  • features-extraction/src/test/java/org/jetbrains/research/groups/ml_methods/extraction/info

1 file changed

+2
-2
lines changed

features-extraction/src/test/java/org/jetbrains/research/groups/ml_methods/extraction/info/InfoCollectorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import com.sixrr.metrics.utils.MethodUtils;
66
import org.jetbrains.annotations.NotNull;
77
import org.jetbrains.research.groups.ml_methods.ScopeAbstractTest;
8-
import org.jetbrains.research.groups.ml_methods.utils.PsiSearchUtil;
8+
import org.jetbrains.research.groups.ml_methods.utils.PSIUtil;
99

1010
import java.util.Arrays;
1111
import java.util.Collections;
@@ -156,7 +156,7 @@ private void runTestCase(final @NotNull InfoValidator validator) throws Exceptio
156156
assertSameElements(
157157
info.getAccessedFields()
158158
.stream()
159-
.map(PsiSearchUtil::getHumanReadableName)
159+
.map(PSIUtil::getHumanReadableName)
160160
.collect(Collectors.toList()),
161161
validator.getAccessedFields(methodName)
162162
);

0 commit comments

Comments
 (0)