You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2017/01/24 20:09:46 UTC

svn commit: r1780106 - /httpd/test/framework/trunk/t/modules/http2.t

Author: jorton
Date: Tue Jan 24 20:09:46 2017
New Revision: 1780106

URL: http://svn.apache.org/viewvc?rev=1780106&view=rev
Log:
Fail correctly when Protocol:HTTP2 is not present.

Modified:
    httpd/test/framework/trunk/t/modules/http2.t

Modified: httpd/test/framework/trunk/t/modules/http2.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/http2.t?rev=1780106&r1=1780105&r2=1780106&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/http2.t (original)
+++ httpd/test/framework/trunk/t/modules/http2.t Tue Jan 24 20:09:46 2017
@@ -20,7 +20,8 @@ if ($sni_available) {
     $total_tests += $vhost_suite;
 }
 
-plan tests => $total_tests, need_module 'http2', need_module 'Protocol::HTTP2::Client', need_min_apache_version('2.4.17');
+plan tests => $total_tests, need 'Protocol::HTTP2::Client', 
+    need_module 'http2', need_min_apache_version('2.4.17');
 
 Apache::TestRequest::module("http2");