diff --git a/annotation/src/test/java/lcsb/mapviewer/annotation/services/DrugbankHTMLParserTest.java b/annotation/src/test/java/lcsb/mapviewer/annotation/services/DrugbankHTMLParserTest.java
index 50e5aa7837f0e9f9742dd73a4559698b569a7f57..37391c7220cfc3c3544fd17b43f7af9914bd1a05 100644
--- a/annotation/src/test/java/lcsb/mapviewer/annotation/services/DrugbankHTMLParserTest.java
+++ b/annotation/src/test/java/lcsb/mapviewer/annotation/services/DrugbankHTMLParserTest.java
@@ -73,26 +73,6 @@ public class DrugbankHTMLParserTest extends AnnotationTestFunctions {
     }
   }
 
-  @Test
-  public void test2FindDrug() throws Exception {
-    try {
-      Drug test = drugBankHTMLParser.findDrug("diazoxide");
-      assertNotNull(test);
-      assertEquals("Diazoxide", test.getName());
-      assertEquals("DB01119", test.getSources().get(0).getResource());
-      assertTrue(test.getBloodBrainBarrier().equalsIgnoreCase("YES"));
-      boolean res = test.getDescription().contains(
-          "A benzothiadiazine derivative that is a peripheral vasodilator used for hypertensive emergencies. It lacks diuretic effect, apparently because it lacks a sulfonamide group. [PubChem]");
-      assertTrue(res);
-      assertEquals(6, test.getTargets().size());
-      assertTrue(test.getApproved());
-    } catch (Exception e) {
-      e.printStackTrace();
-      throw e;
-    }
-
-  }
-
   @Test
   public void testFindRapamycin() throws Exception {
     try {