You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@falcon.apache.org by ro...@apache.org on 2015/06/20 14:28:46 UTC

falcon git commit: FALCON-1285 Don't reduce process name in ProcessSetupTest. Contributed by Ruslan Ostafiychuk

Repository: falcon
Updated Branches:
  refs/heads/master 949376197 -> 514fa5411


FALCON-1285 Don't reduce process name in ProcessSetupTest. Contributed by Ruslan Ostafiychuk


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

Branch: refs/heads/master
Commit: 514fa5411208426e79d9cdfed9c946586e324040
Parents: 9493761
Author: Ruslan Ostafiychuk <ro...@apache.org>
Authored: Sat Jun 20 15:25:06 2015 +0300
Committer: Ruslan Ostafiychuk <ro...@apache.org>
Committed: Sat Jun 20 15:25:06 2015 +0300

----------------------------------------------------------------------
 falcon-regression/CHANGES.txt                                      | 2 ++
 .../org/apache/falcon/regression/searchUI/ProcessSetupTest.java    | 2 --
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/falcon/blob/514fa541/falcon-regression/CHANGES.txt
----------------------------------------------------------------------
diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt
index f9caaa1..d7deb56 100644
--- a/falcon-regression/CHANGES.txt
+++ b/falcon-regression/CHANGES.txt
@@ -351,6 +351,8 @@ Trunk (Unreleased)
    FALCON-681 delete duplicate feed retention test from falcon regression (SamarthG)
 
   BUG FIXES
+   FALCON-1285 Don't reduce process name in ProcessSetupTest (Ruslan Ostafiychuk)
+
    FALCON-1277 Fix SearchApiTest according to api changes (Paul Isaychuk via Ruslan Ostafiychuk)
 
    FALCON-1275 PrismFeedUpdateTest is using root directory (Raghav Kumar Gautam via Ruslan Ostafiychuk)

http://git-wip-us.apache.org/repos/asf/falcon/blob/514fa541/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/searchUI/ProcessSetupTest.java
----------------------------------------------------------------------
diff --git a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/searchUI/ProcessSetupTest.java b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/searchUI/ProcessSetupTest.java
index eda2d68..0fcb50c 100644
--- a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/searchUI/ProcessSetupTest.java
+++ b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/searchUI/ProcessSetupTest.java
@@ -117,8 +117,6 @@ public class ProcessSetupTest extends BaseUITestClass {
         processWizardPage = searchPage.getPageHeader().doCreateProcess();
         processWizardPage.checkPage();
         process = bundles[0].getProcessObject();
-        //we need to reduce name size to 39 symbols
-        process.setName(process.getName().substring(0, 39));
         process.setTags("first=yes,second=yes,third=no");
     }