You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by vo...@apache.org on 2016/08/02 07:58:06 UTC

[1/2] ignite git commit: Fixing tests.

Repository: ignite
Updated Branches:
  refs/heads/ignite-3553 31c8b990a -> 37dbe2603


Fixing tests.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/b79eea2c
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/b79eea2c
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/b79eea2c

Branch: refs/heads/ignite-3553
Commit: b79eea2c6299c1a59f4cb5146d9de0c418649787
Parents: 31c8b99
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Tue Aug 2 10:57:49 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Tue Aug 2 10:57:49 2016 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/igfs/IgfsOneClientNodeTest.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/b79eea2c/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
index c5f85bc..3b7b10f 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
@@ -108,7 +108,7 @@ public class IgfsOneClientNodeTest extends GridCommonAbstractTest {
                 IgfsAbstractSelfTest.create(igfs, new IgfsPath[]{new IgfsPath("/dir")}, null);
                 return null;
             }
-        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes.");
+        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes [igfs=igfs]");
 
         GridTestUtils.assertThrows(log, new Callable<Object>() {
             @Override public Object call() throws Exception {
@@ -118,7 +118,7 @@ public class IgfsOneClientNodeTest extends GridCommonAbstractTest {
 
                 return null;
             }
-        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes.");
+        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes [igfs=igfs]");
 
         GridTestUtils.assertThrows(log, new Callable<Object>() {
             @Override public Object call() throws Exception {
@@ -128,6 +128,6 @@ public class IgfsOneClientNodeTest extends GridCommonAbstractTest {
 
                 return null;
             }
-        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes.");
+        }, IgfsException.class, "Failed to execute operation because there are no IGFS metadata nodes [igfs=igfs]");
     }
 }
\ No newline at end of file


[2/2] ignite git commit: Fixing tests.

Posted by vo...@apache.org.
Fixing tests.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/37dbe260
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/37dbe260
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/37dbe260

Branch: refs/heads/ignite-3553
Commit: 37dbe260319a9c954485bb2f1bb307f51914a53c
Parents: b79eea2
Author: vozerov-gridgain <vo...@gridgain.com>
Authored: Tue Aug 2 10:57:59 2016 +0300
Committer: vozerov-gridgain <vo...@gridgain.com>
Committed: Tue Aug 2 10:57:59 2016 +0300

----------------------------------------------------------------------
 .../ignite/internal/processors/igfs/IgfsOneClientNodeTest.java      | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/37dbe260/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
index 3b7b10f..2385daa 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/igfs/IgfsOneClientNodeTest.java
@@ -100,6 +100,7 @@ public class IgfsOneClientNodeTest extends GridCommonAbstractTest {
     /**
      * @throws Exception If failed.
      */
+    @SuppressWarnings("ThrowableResultOfMethodCallIgnored")
     public void testStartIgfs() throws Exception {
         final IgfsImpl igfs = (IgfsImpl) grid(0).fileSystem("igfs");