You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2019/04/10 12:30:18 UTC

[tomcat] branch 7.0.x updated: Fix failing test

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new e451c30  Fix failing test
e451c30 is described below

commit e451c30cdc42c87ff750fe751d1860052bc35dbe
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Wed Apr 10 13:28:47 2019 +0100

    Fix failing test
---
 test/org/apache/catalina/servlets/TestCGIServletCmdLineArguments.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/test/org/apache/catalina/servlets/TestCGIServletCmdLineArguments.java b/test/org/apache/catalina/servlets/TestCGIServletCmdLineArguments.java
index 15f4d16..6b48062 100755
--- a/test/org/apache/catalina/servlets/TestCGIServletCmdLineArguments.java
+++ b/test/org/apache/catalina/servlets/TestCGIServletCmdLineArguments.java
@@ -55,7 +55,8 @@ public class TestCGIServletCmdLineArguments {
             } catch (SecurityException e) {
             }
 
-            Assert.assertEquals(defaultDecodedPatternWindows, p);
+            Assert.assertNotNull(p);
+            Assert.assertEquals(defaultDecodedPatternWindows.toString(), p.toString());
         }
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org