Skip to content

Commit

Permalink
fix more compilation errors that somehow only show up on GHA?
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanetteclark committed Oct 18, 2023
1 parent 4011f59 commit 5163698
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import edu.ucsb.nceas.mdqengine.exception.MetadigException;

import java.io.InputStream;
import java.util.HashMap;
import java.util.Map;
Expand All @@ -28,7 +30,11 @@ public class PythonDispatcherTest {

@BeforeClass
public static void setupOnce() {
Dispatcher.setupJep();
try {
Dispatcher.setupJep();
} catch (MetadigException me){
fail("Setup failed with MetadigException: " + me.getMessage());
}
}

@Before
Expand Down

0 comments on commit 5163698

Please sign in to comment.