You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2015/02/02 16:01:12 UTC

[32/42] incubator-ignite git commit: #Tests: Fix hadoop tests.

#Tests: Fix hadoop tests.


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

Branch: refs/heads/ignite-140
Commit: 0331e7bf307ba87b36d4303ae6dc3df49ce79a21
Parents: 57f55f6
Author: ivasilinets <iv...@gridgain.com>
Authored: Fri Jan 30 16:11:47 2015 +0300
Committer: ivasilinets <iv...@gridgain.com>
Committed: Fri Jan 30 16:11:47 2015 +0300

----------------------------------------------------------------------
 .../internal/processors/hadoop/GridHadoopCommandLineTest.java    | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/0331e7bf/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/GridHadoopCommandLineTest.java
----------------------------------------------------------------------
diff --git a/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/GridHadoopCommandLineTest.java b/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/GridHadoopCommandLineTest.java
index c243c30..a83dc08 100644
--- a/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/GridHadoopCommandLineTest.java
+++ b/modules/hadoop/src/test/java/org/apache/ignite/internal/processors/hadoop/GridHadoopCommandLineTest.java
@@ -157,9 +157,9 @@ public class GridHadoopCommandLineTest extends GridCommonAbstractTest {
 
         testWorkDir = Files.createTempDirectory("hadoop-cli-test").toFile();
 
-        U.copy(U.resolveGridGainPath("docs/core-site.gridgain.xml"), new File(testWorkDir, "core-site.xml"), false);
+        U.copy(U.resolveGridGainPath("docs/core-site.ignite.xml"), new File(testWorkDir, "core-site.xml"), false);
 
-        File srcFile = U.resolveGridGainPath("docs/mapred-site.gridgain.xml");
+        File srcFile = U.resolveGridGainPath("docs/mapred-site.ignite.xml");
         File dstFile = new File(testWorkDir, "mapred-site.xml");
 
         try (BufferedReader in = new BufferedReader(new FileReader(srcFile));