Skip to content
This repository has been archived by the owner on Jul 25, 2018. It is now read-only.

Commit

Permalink
chore(datahandler): remove assertion for couchdb test (lib-datahandler)
Browse files Browse the repository at this point in the history
  • Loading branch information
maierthomas committed Mar 16, 2018
1 parent a2f8dbd commit 3b90fe7
Showing 1 changed file with 2 additions and 4 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright Siemens AG, 2013-2015. Part of the SW360 Portal Project.
* Copyright Siemens AG, 2013-2018. Part of the SW360 Portal Project.
*
* SPDX-License-Identifier: EPL-1.0
*
Expand Down Expand Up @@ -88,8 +88,6 @@ public String call() throws Exception {
} catch (ExecutionException e) {
Throwable futureException = e.getCause();
assertThat(futureException, is(notNullValue()));
assertThat(futureException.getMessage(),
anyOf(containsString("timed out"), containsString("Das Netzwerk ist nicht erreichbar")));
}
} catch (TimeoutException e) {
fail("downloader got stuck on a black hole");
Expand All @@ -100,4 +98,4 @@ public String call() throws Exception {
executor.awaitTermination(1, TimeUnit.MINUTES);
}
}
}
}

0 comments on commit 3b90fe7

Please sign in to comment.