You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by eh...@apache.org on 2015/01/12 09:51:24 UTC

svn commit: r1651042 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/core/ solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java

Author: ehatcher
Date: Mon Jan 12 08:51:23 2015
New Revision: 1651042

URL: http://svn.apache.org/r1651042
Log:
fix SimplePostToolTest (merged from trunk r1651040)

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/   (props changed)
    lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java

Modified: lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java?rev=1651042&r1=1651041&r2=1651042&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java (original)
+++ lucene/dev/branches/branch_5x/solr/core/src/test/org/apache/solr/util/SimplePostToolTest.java Mon Jan 12 08:51:23 2015
@@ -113,7 +113,7 @@ public class SimplePostToolTest extends
   @Test
   public void testTypeSupported() {
     assertTrue(t_web.typeSupported("application/pdf"));
-    assertTrue(t_web.typeSupported("text/xml"));
+    assertTrue(t_web.typeSupported("application/xml"));
     assertFalse(t_web.typeSupported("text/foo"));
 
     t_web.fileTypes = "doc,xls,ppt";