From d4a30fabe3b66bc80275ccf22714f2f53cf2c4d1 Mon Sep 17 00:00:00 2001 From: Claudio Atzori Date: Wed, 5 May 2021 17:28:15 +0200 Subject: [PATCH] clean up tests --- .../graph/raw/MigrateMongoMdstoresApplicationTest.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/dhp-workflows/dhp-graph-mapper/src/test/java/eu/dnetlib/dhp/oa/graph/raw/MigrateMongoMdstoresApplicationTest.java b/dhp-workflows/dhp-graph-mapper/src/test/java/eu/dnetlib/dhp/oa/graph/raw/MigrateMongoMdstoresApplicationTest.java index 5fd897aaf..ddb5d873f 100644 --- a/dhp-workflows/dhp-graph-mapper/src/test/java/eu/dnetlib/dhp/oa/graph/raw/MigrateMongoMdstoresApplicationTest.java +++ b/dhp-workflows/dhp-graph-mapper/src/test/java/eu/dnetlib/dhp/oa/graph/raw/MigrateMongoMdstoresApplicationTest.java @@ -40,15 +40,6 @@ public class MigrateMongoMdstoresApplicationTest { db.getCollection("metadataManager").insertOne(Document.parse(read("mdstore_metadataManager.json"))); } - @Test - public void test_MdstoreClient() throws IOException { - try (MdstoreClient client = new MdstoreClient(mongo.getMongoClient(), MongoExtension.UNIT_TEST_DB)) { - for (String xml : client.listRecords(COLL_NAME)) { - Assertions.assertTrue(StringUtils.isNotBlank(xml)); - } - } - } - @Test public void test_MigrateMongoMdstoresApplication(@TempDir Path tmpPath) throws Exception {