]> git.donarmstrong.com Git - debbugs.git/blobdiff - t/07_bugreport.t
Don't print strange-looking "Usertags are now: ." message when removing all usertags.
[debbugs.git] / t / 07_bugreport.t
index c1438c276888711bb4cab8eec14f00131bf25a50..fbbb09fdd6a1600be859908e6ce0d07646cd2850 100644 (file)
@@ -24,13 +24,8 @@ use HTTP::Status qw(RC_NOT_MODIFIED);
 use lib qw(t/lib);
 use DebbugsTest qw(:all);
 
-my %config;
-eval {
-     %config = create_debbugs_configuration();
-};
-if ($@) {
-     BAIL_OUT($@);
-}
+my %config = create_debbugs_configuration();
+
 
 # create a bug
 send_message(to=>'submit@bugs.something',
@@ -53,7 +48,7 @@ my $bugreport_cgi_handler = sub {
     # I do not understand why this is necessary.
     $ENV{DEBBUGS_CONFIG_FILE} = "$config{config_dir}/debbugs_config";
     my $fh;
-    open($fh,'-|',-e './cgi/version.cgi'? 'perl -I. -T ./cgi/bugreport.cgi' : 'perl -I. -T ../cgi/bugreport.cgi');
+    open($fh,'-|',-e './cgi/version.cgi'? 'perl -Ilib -T ./cgi/bugreport.cgi' : 'perl -Ilib -T ../cgi/bugreport.cgi');
     my $headers;
     my $status = 200;
     while (<$fh>) {