You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2008/03/19 18:43:40 UTC

svn commit: r638951 - /incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java

Author: ritchiem
Date: Wed Mar 19 10:43:37 2008
New Revision: 638951

URL: http://svn.apache.org/viewvc?rev=638951&view=rev
Log:
QPID-847 : Fixed this test for the selectors

Modified:
    incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java

Modified: incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java?rev=638951&r1=638950&r2=638951&view=diff
==============================================================================
--- incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java (original)
+++ incubator/qpid/branches/M2.1/java/broker/src/test/java/org/apache/qpid/server/SelectorParserTest.java Wed Mar 19 10:43:37 2008
@@ -31,11 +31,9 @@
     }
 
     public void testLike()
-    {
-        //FAILING QPID-847
-        System.err.println("testLike disabled");
-        System.out.println("testLike disabled");
-//        testPass("Cost LIKE 2");
+    {        
+        testFail("Cost LIKE 2");
+        testPass("Cost LIKE 'Hello'");
     }
 
     public void testStringQuoted()