Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 188E1200B82 for ; Fri, 16 Sep 2016 11:00:44 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 17244160ADC; Fri, 16 Sep 2016 09:00:44 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 573A0160A8C for ; Fri, 16 Sep 2016 11:00:43 +0200 (CEST) Received: (qmail 79207 invoked by uid 500); 16 Sep 2016 09:00:42 -0000 Mailing-List: contact commits-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list commits@ignite.apache.org Received: (qmail 79098 invoked by uid 99); 16 Sep 2016 09:00:42 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Sep 2016 09:00:42 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 43029E0E06; Fri, 16 Sep 2016 09:00:42 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ptupitsyn@apache.org To: commits@ignite.apache.org Date: Fri, 16 Sep 2016 09:00:46 -0000 Message-Id: <639a90b607d24f9fbf41c60b0f57587b@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [05/13] ignite git commit: Hadoop: Removed invalid test. archived-at: Fri, 16 Sep 2016 09:00:44 -0000 Hadoop: Removed invalid test. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/75997afc Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/75997afc Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/75997afc Branch: refs/heads/ignite-3199-1 Commit: 75997afc762aff0581e53adc25c3efa329f48c6e Parents: 409f043 Author: vozerov-gridgain Authored: Thu Sep 15 13:23:44 2016 +0300 Committer: vozerov-gridgain Committed: Thu Sep 15 13:23:44 2016 +0300 ---------------------------------------------------------------------- .../ignite/igfs/HadoopFIleSystemFactorySelfTest.java | 10 ---------- 1 file changed, 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/75997afc/modules/hadoop/src/test/java/org/apache/ignite/igfs/HadoopFIleSystemFactorySelfTest.java ---------------------------------------------------------------------- diff --git a/modules/hadoop/src/test/java/org/apache/ignite/igfs/HadoopFIleSystemFactorySelfTest.java b/modules/hadoop/src/test/java/org/apache/ignite/igfs/HadoopFIleSystemFactorySelfTest.java index 7cf1e4b..5be3a64 100644 --- a/modules/hadoop/src/test/java/org/apache/ignite/igfs/HadoopFIleSystemFactorySelfTest.java +++ b/modules/hadoop/src/test/java/org/apache/ignite/igfs/HadoopFIleSystemFactorySelfTest.java @@ -35,14 +35,12 @@ import org.apache.ignite.internal.util.typedef.G; import org.apache.ignite.internal.util.typedef.internal.U; import org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi; import org.apache.ignite.spi.discovery.tcp.ipfinder.vm.TcpDiscoveryVmIpFinder; -import org.apache.ignite.testframework.GridTestUtils; import org.jetbrains.annotations.Nullable; import java.io.Externalizable; import java.io.File; import java.io.FileOutputStream; import java.net.URI; -import java.util.concurrent.Callable; import java.util.concurrent.atomic.AtomicInteger; import static org.apache.ignite.cache.CacheAtomicityMode.TRANSACTIONAL; @@ -117,14 +115,6 @@ public class HadoopFIleSystemFactorySelfTest extends IgfsCommonAbstractTest { assert primary.exists(IGFS_PATH_DUAL); assert secondary.exists(IGFS_PATH_DUAL); - GridTestUtils.assertThrows(null, new Callable() { - @Override public Object call() throws Exception { - primary.mkdirs(IGFS_PATH_PROXY); - - return null; - } - }, IgfsInvalidPathException.class, null); - // Create remote instance. FileSystem fs = FileSystem.get(URI.create("igfs://primary:primary@127.0.0.1:10500/"), baseConfiguration());