diff options
Diffstat (limited to 'ext/Hash-Util')
-rw-r--r-- | ext/Hash-Util/t/Util.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Hash-Util/t/Util.t b/ext/Hash-Util/t/Util.t index a7cd946786..74d823db05 100644 --- a/ext/Hash-Util/t/Util.t +++ b/ext/Hash-Util/t/Util.t @@ -155,7 +155,7 @@ is( $hash{locked}, 42, 'unlock_value' ); my %hash = (foo => 42, bar => undef); eval { lock_keys(%hash, qw(foo baz)); }; is( $@, sprintf("Hash has key 'bar' which is not in the new key ". - "set at %s line %d\n", __FILE__, __LINE__ - 2), + "set at %s line %d.\n", __FILE__, __LINE__ - 2), 'carp test' ); } |