* Revert r1878937 as a result of
  https://lists.apache.org/thread.html/red499ac4750b88e5943c25abb86434c59dfff4d4f386ffc53742755d%40%3Cdev.httpd.apache.org%3E
  and
  https://lists.apache.org/thread.html/ra79eee019e2357703b0ea81153458a29817b58ce92e3605949eee1fe%40%3Cdev.httpd.apache.org%3E


git-svn-id: https://svn.apache.org/repos/asf/httpd/test/framework/trunk@1878984 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/t/apache/http_strict.t b/t/apache/http_strict.t
index 724bc5d..2434fc3 100644
--- a/t/apache/http_strict.t
+++ b/t/apache/http_strict.t
@@ -12,10 +12,6 @@
                 need_min_apache_fix("2.4.34", "2.5.1") :
                 need_min_apache_version('2.4.34');
 
-my $test_unsupported_version = defined(&need_min_apache_fix) ?
-                need_min_apache_fix("2.5.1") :
-                need_min_apache_version('2.5.1');
-
 # possible expected results:
 #   0:       any HTTP error
 #   1:       any HTTP success
@@ -36,7 +32,7 @@
     [ "GET\t/ HTTP/1.0\r\n\r\n"                               => 400],
     [ "GET / HTT/1.0\r\n\r\n"                                 =>   0],
     [ "GET / HTTP/1.0\r\nHost: localhost\r\n\r\n"             =>   1],
-    [ "GET / HTTP/2.0\r\nHost: localhost\r\n\r\n"             =>   1, 505, $test_unsupported_version],
+    [ "GET / HTTP/2.0\r\nHost: localhost\r\n\r\n"             =>   1],
     [ "GET / HTTP/1.2\r\nHost: localhost\r\n\r\n"             =>   1],
     [ "GET / HTTP/1.11\r\nHost: localhost\r\n\r\n"            => 400],
     [ "GET / HTTP/10.0\r\nHost: localhost\r\n\r\n"            => 400],