You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by on...@apache.org on 2017/07/13 11:05:11 UTC

[2/2] camel git commit: CAMEL-11533 remove ~~ operator tests

CAMEL-11533 remove ~~ operator tests


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/72c9b60b
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/72c9b60b
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/72c9b60b

Branch: refs/heads/camel-2.19.x
Commit: 72c9b60b3b2f04e37ba84e0e908ae41f18ecca84
Parents: e34599d
Author: onders86 <on...@gmail.com>
Authored: Thu Jul 13 14:02:56 2017 +0300
Committer: onders86 <on...@gmail.com>
Committed: Thu Jul 13 14:02:56 2017 +0300

----------------------------------------------------------------------
 .../org/apache/camel/language/simple/SimpleOperatorTest.java     | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/72c9b60b/camel-core/src/test/java/org/apache/camel/language/simple/SimpleOperatorTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/language/simple/SimpleOperatorTest.java b/camel-core/src/test/java/org/apache/camel/language/simple/SimpleOperatorTest.java
index 81a6966..d3d5eb0 100644
--- a/camel-core/src/test/java/org/apache/camel/language/simple/SimpleOperatorTest.java
+++ b/camel-core/src/test/java/org/apache/camel/language/simple/SimpleOperatorTest.java
@@ -296,8 +296,6 @@ public class SimpleOperatorTest extends LanguageTestSupport {
         assertPredicate("${in.header.strNum} not contains '123'", false);
         assertPredicate("${in.header.strNum} contains '-123'", false);
         assertPredicate("${in.header.strNum} not contains '-123'", true);
-        assertPredicate("${in.header.strNum} ~~ '123'", true);
-        assertPredicate("${in.header.strNum} ~~ '-123'", false);
     
         exchange.getIn().setHeader("num", -123);
         assertPredicate("${in.header.num} == -123", true);
@@ -318,8 +316,6 @@ public class SimpleOperatorTest extends LanguageTestSupport {
         assertPredicate("${in.header.strNumNegative} not contains '123'", false);
         assertPredicate("${in.header.strNumNegative} contains '-123'", true);
         assertPredicate("${in.header.strNumNegative} not contains '-123'", false);
-        assertPredicate("${in.header.strNumNegative} ~~ '123'", true);
-        assertPredicate("${in.header.strNumNegative} ~~ '-123'", true);
 
     }