Repository: atlas Updated Branches: refs/heads/branch-0.8 ffda4ea78 -> fb30afba4
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/fb30afba Tree: http://git-wip-us.apache.org/repos/asf/atlas/tree/fb30afba Diff: http://git-wip-us.apache.org/repos/asf/atlas/diff/fb30afba Branch: refs/heads/branch-0.8 Commit: fb30afba4089290af1e066882f41dbaf2b68a285 Parents: ffda4ea Author: Ashutosh Mestry <[email protected]> Authored: Thu Aug 23 16:18:24 2018 -0700 Committer: Ashutosh Mestry <[email protected]> Committed: Thu Aug 23 16:18:24 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/fb30afba/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."); } } }
