aboutsummaryrefslogtreecommitdiff
path: root/t/require-key-data.t
diff options
context:
space:
mode:
Diffstat (limited to 't/require-key-data.t')
-rw-r--r--t/require-key-data.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/require-key-data.t b/t/require-key-data.t
index 03be100..797175e 100644
--- a/t/require-key-data.t
+++ b/t/require-key-data.t
@@ -9,7 +9,7 @@ use Test::More tests => 4;
use Mail::Run::Crypt;
-our $VERSION = '0.08';
+our $VERSION = '0.09';
{
my $mrc;
@@ -21,7 +21,7 @@ our $VERSION = '0.08';
);
eval { $mrc = Mail::Run::Crypt->new(%opts) } or $error = $EVAL_ERROR;
ok( defined $error, 'no_keyid_failed' );
- ok( $error =~ m/^\Qkeyid required for signing/msx, 'no_keyid_errorstr' );
+ ok( $error =~ m/^\QKey ID required for signing/msx, 'no_keyid_errorstr' );
}
{
@@ -34,6 +34,6 @@ our $VERSION = '0.08';
);
eval { $mrc = Mail::Run::Crypt->new(%opts) } or $error = $EVAL_ERROR;
ok( defined $error, 'no_passphrase_failed' );
- ok( $error =~ m/^\Qpassphrase required for signing/msx,
+ ok( $error =~ m/^\QPassphrase required for signing/msx,
'no_passphrase_errorstr' );
}