Repository: falcon Updated Branches: refs/heads/master fa5690031 -> a57481417
FALCON-1218: RescheduleProcessInFinalStatesTest.checkNotFoundDefinition() needs to be case flexible contributed by Raghav Kumar Gautam Project: http://git-wip-us.apache.org/repos/asf/falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/falcon/commit/a5748141 Tree: http://git-wip-us.apache.org/repos/asf/falcon/tree/a5748141 Diff: http://git-wip-us.apache.org/repos/asf/falcon/diff/a5748141 Branch: refs/heads/master Commit: a57481417416b3fb18571bd6a1e41cde271fef7e Parents: fa56900 Author: Raghav Kumar Gautam <[email protected]> Authored: Mon May 18 11:57:03 2015 -0700 Committer: Raghav Kumar Gautam <[email protected]> Committed: Mon May 18 11:57:03 2015 -0700 ---------------------------------------------------------------------- falcon-regression/CHANGES.txt | 3 +++ .../regression/prism/RescheduleProcessInFinalStatesTest.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/falcon/blob/a5748141/falcon-regression/CHANGES.txt ---------------------------------------------------------------------- diff --git a/falcon-regression/CHANGES.txt b/falcon-regression/CHANGES.txt index f7cdba0..ccd7497 100644 --- a/falcon-regression/CHANGES.txt +++ b/falcon-regression/CHANGES.txt @@ -321,6 +321,9 @@ Trunk (Unreleased) FALCON-681 delete duplicate feed retention test from falcon regression (SamarthG) BUG FIXES + FALCON-1221 RescheduleProcessInFinalStatesTest.checkNotFoundDefinition() needs to be case flexible + (Raghav Kumar Gautam) + FALCON-1218 Minor fix for testFeedListingAfterFeedDataPathUpdate & testFeedListingAfterFeedAvailabilityFlagUpdate (Raghav Kumar Gautam) http://git-wip-us.apache.org/repos/asf/falcon/blob/a5748141/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/prism/RescheduleProcessInFinalStatesTest.java ---------------------------------------------------------------------- diff --git a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/prism/RescheduleProcessInFinalStatesTest.java b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/prism/RescheduleProcessInFinalStatesTest.java index 3f7f117..5031de4 100644 --- a/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/prism/RescheduleProcessInFinalStatesTest.java +++ b/falcon-regression/merlin/src/test/java/org/apache/falcon/regression/prism/RescheduleProcessInFinalStatesTest.java @@ -194,7 +194,7 @@ public class RescheduleProcessInFinalStatesTest extends BaseTestClass { throws URISyntaxException, IOException, AuthenticationException, JAXBException, InterruptedException { ServiceResponse r = prism.getProcessHelper().getEntityDefinition(process); - Assert.assertTrue(r.getMessage().contains("(process) not found")); + Assert.assertTrue(r.getMessage().toLowerCase().contains("(process) not found")); AssertUtil.assertFailed(r); } }
