Skip to content

Commit

Permalink
Restore PyLibTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jmao-denver committed May 6, 2024
1 parent 481689d commit 6fdfed3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/org/jpy/PyLibTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ public class PyLibTest {
@Rule
public TestRule testStatePrinter = new TestStatePrinter();
@Before
public static void setUp() throws Exception {
public void setUp() throws Exception {
//PyLib.Diag.setFlags(PyLib.Diag.F_ERR);
PyLib.startPython();
assertEquals(true, PyLib.isPythonRunning());
}

@After
public static void tearDown() throws Exception {
public void tearDown() throws Exception {
PyLib.stopPython();
}

Expand Down

0 comments on commit 6fdfed3

Please sign in to comment.