# sprint-1 Fixed class name in test

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

Branch: refs/heads/ignite-86
Commit: 90241e06ff8e0a0b3797951609d64f270677ed54
Parents: 06efcbf
Author: sboikov <sboi...@gridgain.com>
Authored: Fri Jan 23 16:51:34 2015 +0300
Committer: sboikov <sboi...@gridgain.com>
Committed: Fri Jan 23 16:51:34 2015 +0300

----------------------------------------------------------------------
 .../p2p/GridP2PContinuousDeploymentTask1.java   |  2 +-
 .../ignite/tests/p2p/GridTestUserResource.java  | 27 --------------------
 .../ignite/tests/p2p/TestUserResource.java      | 27 ++++++++++++++++++++
 .../p2p/GridP2PUserVersionChangeSelfTest.java   |  4 +--
 4 files changed, 30 insertions(+), 30 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/90241e06/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridP2PContinuousDeploymentTask1.java
----------------------------------------------------------------------
diff --git 
a/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridP2PContinuousDeploymentTask1.java
 
b/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridP2PContinuousDeploymentTask1.java
index 02f4786..6f8aa87 100644
--- 
a/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridP2PContinuousDeploymentTask1.java
+++ 
b/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridP2PContinuousDeploymentTask1.java
@@ -38,7 +38,7 @@ public class GridP2PContinuousDeploymentTask1 extends 
ComputeTaskSplitAdapter<Ob
             @Override public Object execute() throws IgniteCheckedException {
                 X.println(">>> Executing GridP2PContinuousDeploymentTask1 
job.");
 
-                ignite.cache(null).putx("key", new GridTestUserResource());
+                ignite.cache(null).putx("key", new TestUserResource());
 
                 return null;
             }

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/90241e06/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridTestUserResource.java
----------------------------------------------------------------------
diff --git 
a/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridTestUserResource.java
 
b/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridTestUserResource.java
deleted file mode 100644
index afd3060..0000000
--- 
a/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/GridTestUserResource.java
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.ignite.tests.p2p;
-
-import java.io.*;
-
-/**
- * Test user resource.
- */
-public class GridTestUserResource implements Serializable {
-    // No-op.
-}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/90241e06/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/TestUserResource.java
----------------------------------------------------------------------
diff --git 
a/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/TestUserResource.java
 
b/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/TestUserResource.java
new file mode 100644
index 0000000..4e8ba67
--- /dev/null
+++ 
b/modules/extdata/p2p/src/main/java/org/apache/ignite/tests/p2p/TestUserResource.java
@@ -0,0 +1,27 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.ignite.tests.p2p;
+
+import java.io.*;
+
+/**
+ * Test user resource.
+ */
+public class TestUserResource implements Serializable {
+    // No-op.
+}

http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/90241e06/modules/spring/src/test/java/org/apache/ignite/p2p/GridP2PUserVersionChangeSelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/spring/src/test/java/org/apache/ignite/p2p/GridP2PUserVersionChangeSelfTest.java
 
b/modules/spring/src/test/java/org/apache/ignite/p2p/GridP2PUserVersionChangeSelfTest.java
index 4152113..81769d7 100644
--- 
a/modules/spring/src/test/java/org/apache/ignite/p2p/GridP2PUserVersionChangeSelfTest.java
+++ 
b/modules/spring/src/test/java/org/apache/ignite/p2p/GridP2PUserVersionChangeSelfTest.java
@@ -53,10 +53,10 @@ public class GridP2PUserVersionChangeSelfTest extends 
GridCommonAbstractTest {
     private IgniteDeploymentMode depMode;
 
     /** Test task class name. */
-    private static final String TEST_TASK_NAME = 
"org.gridgain.grid.tests.p2p.GridP2PTestTaskExternalPath1";
+    private static final String TEST_TASK_NAME = 
"org.apache.ignite.tests.p2p.P2PTestTaskExternalPath1";
 
     /** Test resource class name. */
-    private static final String TEST_RCRS_NAME = 
"org.gridgain.grid.tests.p2p.GridTestUserResource";
+    private static final String TEST_RCRS_NAME = 
"org.apache.ignite.tests.p2p.TestUserResource";
 
     /** IP finder. */
     private final TcpDiscoveryIpFinder ipFinder = new 
TcpDiscoveryVmIpFinder(true);

Reply via email to