* Move use after plan and need to prevent compilation failure

git-svn-id: https://svn.apache.org/repos/asf/httpd/test/framework/trunk@1901555 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/t/modules/sed.t b/t/modules/sed.t
index 1f97158..cd64f99 100644
--- a/t/modules/sed.t
+++ b/t/modules/sed.t
@@ -5,9 +5,6 @@
 use Apache::TestRequest;
 use Apache::TestUtil;
 
-# Hack to allow streaming of data in/out of mod_echo
-use LWP::Protocol::AnyEvent::http;
-
 my @ts = (
    # see t/conf/extra.conf.in
    { url => "/apache/sed/out-foo/foobar.html", content => 'barbar', msg => "sed output filter", code => '200' },
@@ -22,6 +19,8 @@
 
 plan tests => $tests, need_module('sed'), need "LWP::Protocol::AnyEvent::http";
 
+# Hack to allow streaming of data in/out of mod_echo
+use LWP::Protocol::AnyEvent::http;
 
 for my $t (@ts) {
   my $req;