You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by sf...@apache.org on 2011/02/12 13:19:08 UTC

svn commit: r1070062 - /httpd/test/framework/trunk/t/modules/dav.t

Author: sf
Date: Sat Feb 12 12:19:08 2011
New Revision: 1070062

URL: http://svn.apache.org/viewvc?rev=1070062&view=rev
Log:
remove the test for PR 42978, the fix for it has been reverted in r1070061

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

Modified: httpd/test/framework/trunk/t/modules/dav.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/dav.t?rev=1070062&r1=1070061&r2=1070062&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/dav.t (original)
+++ httpd/test/framework/trunk/t/modules/dav.t Sat Feb 12 12:19:08 2011
@@ -10,7 +10,7 @@ use HTTP::Date;
 ## mod_dav tests
 ##
 
-plan tests => 17, [qw(dav HTTP::DAV)];
+plan tests => 16, [qw(dav HTTP::DAV)];
 require HTTP::DAV;
 
 my $vars = Apache::Test::vars();
@@ -172,14 +172,6 @@ print "PR 49825: expect 400 bad request 
 ok $actual == 400;
 $user_agent->default_header('Content-Range' => undef);
 
-## PR 42978 ##
-$user_agent->default_header('Content-Foo' => 'xxx' );
-$response = $resource->put($body);
-$actual = $response->code;
-print "PR 42978: expect 501 not implemented got: $actual\n";
-ok $actual == 501;
-$user_agent->default_header('Content-Foo' => undef);
-
 ## clean up ##
 rmdir "$htdocs/$dir/.DAV" or print "warning: could not remove .DAV dir: $!";
 rmdir "$htdocs/$dir" or print "warning: could not remove dav dir: $!";