diff --git a/docs/examples/dropped_axiom.owl b/docs/examples/dropped_axiom.owl deleted file mode 100644 index 7675e191d..000000000 --- a/docs/examples/dropped_axiom.owl +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - part of - - - - - - - diff --git a/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java b/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java index 6b636bf77..238f5dbec 100644 --- a/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java +++ b/robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java @@ -236,18 +236,6 @@ public void testExecute() throws Exception { runCommand(command); } - // Regression test for dropped axiom should fail: - // https://github.com/ontodev/robot/issues/98 - boolean passed = true; - try { - runCommand("robot convert -i dropped_axiom.owl -o " + "results/dropped_axiom.owl"); - } catch (Exception e) { - passed = false; - } - if (passed) { - throw new Exception("dropped_axiom.owl test should fail but it passed"); - } - compareResults(); } }