diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-08-06 10:11:28 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-08-06 10:11:28 -0700 |
commit | de9d037528895f7151a9aead6724ce2df95f9586 (patch) | |
tree | 3ba47a923a1d6033605ffc5586ed1af439d8c141 /rt/t/mail/gnupg-outgoing-encrypted-plaintext.t | |
parent | b226bc6bd81f999176cdbfa53a799033ff0a0307 (diff) |
rt 4.2.14 (#13852)
Diffstat (limited to 'rt/t/mail/gnupg-outgoing-encrypted-plaintext.t')
-rw-r--r-- | rt/t/mail/gnupg-outgoing-encrypted-plaintext.t | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/rt/t/mail/gnupg-outgoing-encrypted-plaintext.t b/rt/t/mail/gnupg-outgoing-encrypted-plaintext.t index 35cfceddd..7f0f7ac85 100644 --- a/rt/t/mail/gnupg-outgoing-encrypted-plaintext.t +++ b/rt/t/mail/gnupg-outgoing-encrypted-plaintext.t @@ -2,7 +2,7 @@ use strict; use warnings; use RT::Test::GnuPG - tests => 104, + tests => undef, text_templates => 1, gnupg_options => { passphrase => 'rt-test', @@ -10,7 +10,7 @@ use RT::Test::GnuPG }; RT::Test->import_gnupg_key('rt-recipient@example.com'); -RT::Test->import_gnupg_key( 'rt-test@example.com', 'public' ); +RT::Test->import_gnupg_key( 'rt-test@example.com' ); my $queue = RT::Test->load_or_create_queue( Name => 'Regression', @@ -25,3 +25,5 @@ ok $m->login, 'logged in'; create_and_test_outgoing_emails( $queue, $m ); +undef $m; +done_testing; |