--- patching/ignite/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/impl/igfs/IgniteHadoopFileSystemAbstractSelfTest.java 2018-09-10 14:11:14.000000000 +0200 +++ ignite/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/impl/igfs/IgniteHadoopFileSystemAbstractSelfTest.java 2018-09-05 15:05:58.000000000 +0200 @@ -610,7 +610,7 @@ GridTestUtils.assertThrows(log, new Callable() { @Override public Object call() throws Exception { - return fs.open(path, 256); + return fs.open((Path)path, 256); } }, IOException.class, "File system is stopped."); @@ -1072,7 +1072,7 @@ public void testOpenCheckParametersPathIsNull() throws Exception { GridTestUtils.assertThrows(log, new Callable() { @Override public Object call() throws Exception { - return fs.open(null, 1024); + return fs.open((Path)null, 1024); } }, NullPointerException.class, "Ouch! Argument cannot be null: f"); } @@ -2498,4 +2498,4 @@ return cfg; } -} \ No newline at end of file +}