Author: markt Date: Wed Jan 24 10:54:49 2018 New Revision: 1822094 URL: http://svn.apache.org/viewvc?rev=1822094&view=rev Log: SpotBugs Add a check to silence a warning Trivial(ish) commit to test CI
Modified: tomcat/trunk/test/org/apache/coyote/http2/TestAbstractStream.java Modified: tomcat/trunk/test/org/apache/coyote/http2/TestAbstractStream.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http2/TestAbstractStream.java?rev=1822094&r1=1822093&r2=1822094&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/coyote/http2/TestAbstractStream.java (original) +++ tomcat/trunk/test/org/apache/coyote/http2/TestAbstractStream.java Wed Jan 24 10:54:49 2018 @@ -270,7 +270,7 @@ public class TestAbstractStream { Assert.assertEquals(b, d.getParentStream()); // This triggers the StackOverflowError - c.isDescendant(d); + Assert.assertTrue(c.isDescendant(d)); // Check children Assert.assertEquals(1, handler.getChildStreams().size()); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org