Repository: atlas Updated Branches: refs/heads/master 03f2754d1 -> ca33b1bf9
ATLAS-2814: Cluster stores replication details. Part #2 Project: http://git-wip-us.apache.org/repos/asf/atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/atlas/commit/ca33b1bf Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/ca33b1bf Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/ca33b1bf Branch: refs/heads/master Commit: ca33b1bf9805ea72f13ce86d92a90b7b4dbe14a9 Parents: 03f2754 Author: Ashutosh Mestry <[email protected]> Authored: Thu Aug 23 16:18:24 2018 -0700 Committer: Ashutosh Mestry <[email protected]> Committed: Wed Oct 10 22:24:40 2018 -0700 ---------------------------------------------------------------------- .../org/apache/atlas/web/resources/AdminExportImportTestIT.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/atlas/blob/ca33b1bf/webapp/src/test/java/org/apache/atlas/web/resources/AdminExportImportTestIT.java ---------------------------------------------------------------------- diff --git a/webapp/src/test/java/org/apache/atlas/web/resources/AdminExportImportTestIT.java b/webapp/src/test/java/org/apache/atlas/web/resources/AdminExportImportTestIT.java index 7acd332..cc5d36b 100644 --- a/webapp/src/test/java/org/apache/atlas/web/resources/AdminExportImportTestIT.java +++ b/webapp/src/test/java/org/apache/atlas/web/resources/AdminExportImportTestIT.java @@ -109,14 +109,14 @@ public class AdminExportImportTestIT extends BaseResourceIT { } @AfterClass - protected void teardown() { + public void teardown() { AtlasImportRequest request = new AtlasImportRequest(); request.getOptions().put(AtlasImportRequest.TRANSFORMS_KEY, IMPORT_TRANSFORM_SET_DELETED); try { performImport(FILE_TO_IMPORT, request); } catch (AtlasServiceException e) { - throw new SkipException("performTeardown: failed! Subsequent tests results may be affected.", e); + throw new SkipException("performTeardown: failed! Subsequent tests results may be affected."); } } }
