Skip to content

Commit

Permalink
Update to EISOP 3.39-eisop1 from 3.34-eisop1 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong authored Apr 7, 2024
1 parent 2d0d946 commit a8dc725
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/security/SecurityTest.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package security;

import checkers.inference.test.CFInferenceTest;
import org.plumelib.util.IPair;
import security.solver.SecuritySolverEngine;

import java.io.File;
import java.util.ArrayList;
import java.util.List;
import org.checkerframework.framework.test.TestUtilities;
import org.checkerframework.javacutil.Pair;
import org.junit.runners.Parameterized.Parameters;

public class SecurityTest extends CFInferenceTest {
Expand All @@ -28,11 +28,11 @@ public boolean useHacks() {
}

@Override
public Pair<String, List<String>> getSolverNameAndOptions() {
public IPair<String, List<String>> getSolverNameAndOptions() {
final String solverName = SecuritySolverEngine.class.getCanonicalName();
List<String> solverOptions = new ArrayList<>();
// solverOptions.add("solver=Z3");
return Pair.of(solverName, solverOptions);
return IPair.of(solverName, solverOptions);
}

@Parameters
Expand Down

0 comments on commit a8dc725

Please sign in to comment.