* Hopefully get rid of 'Test::plan(): skipping unrecognized directive '1' at' error

git-svn-id: https://svn.apache.org/repos/asf/httpd/test/framework/trunk@1901566 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/t/modules/sed.t b/t/modules/sed.t
index cd64f99..648367e 100644
--- a/t/modules/sed.t
+++ b/t/modules/sed.t
@@ -17,10 +17,10 @@
 
 my $tests = 2*scalar @ts;
 
-plan tests => $tests, need_module('sed'), need "LWP::Protocol::AnyEvent::http";
+plan tests => $tests, need 'LWP::Protocol::AnyEvent::http', need_module('sed');
 
 # Hack to allow streaming of data in/out of mod_echo
-use LWP::Protocol::AnyEvent::http;
+require LWP::Protocol::AnyEvent::http;
 
 for my $t (@ts) {
   my $req;