Skip to content

Commit

Permalink
Enable devel mode for mailgate tests that depend on detailed output
Browse files Browse the repository at this point in the history
Now we only show detailed output on devel mode, see also ef958da.
  • Loading branch information
sunnavy committed Oct 12, 2023
1 parent 35548e3 commit 3081736
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion t/mail/gateway.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use strict;
use warnings;


use RT::Test config => 'Set( @MailPlugins, "Action::Take", "Action::Resolve");', tests => undef, actual_server => 1;
use RT::Test config => 'Set( @MailPlugins, "Action::Take", "Action::Resolve"); Set($DevelMode, 1);', tests => undef, actual_server => 1;
my ($baseurl, $m) = RT::Test->started_ok;

use RT::Tickets;
Expand Down
2 changes: 1 addition & 1 deletion t/mail/han-encodings.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use RT::Test tests => undef, actual_server => 1;
use RT::Test tests => undef, config => 'Set($DevelMode, 1);', actual_server => 1;

# we can't simply call Encode::HanExtra->require here because we are testing
# if Encode::HanExtra could be automatically loaded.
Expand Down
2 changes: 1 addition & 1 deletion t/ticket/interface.t
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use strict;
use warnings;

use RT::Test tests => undef, actual_server => 1;
use RT::Test tests => undef, config => 'Set($DevelMode, 1);', actual_server => 1;

my ( $baseurl, $m ) = RT::Test->started_ok;

Expand Down

0 comments on commit 3081736

Please sign in to comment.