summaryrefslogtreecommitdiff
path: root/cpan/Test-Simple/lib/Test/Builder.pm
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2016-08-09 08:34:16 +0100
committerSteve Hay <steve.m.hay@googlemail.com>2016-08-09 08:34:16 +0100
commit9fe558dc18b541114538e75431e9b31368d744c5 (patch)
tree0e4295c201e598e4463951ac90b7d07cfa718a11 /cpan/Test-Simple/lib/Test/Builder.pm
parent89309dcee30820578343533ad7e8beb3e25e18b9 (diff)
downloadperl-9fe558dc18b541114538e75431e9b31368d744c5.tar.gz
Upgrade Test-Simple from version 1.302045 to 1.302049
Diffstat (limited to 'cpan/Test-Simple/lib/Test/Builder.pm')
-rw-r--r--cpan/Test-Simple/lib/Test/Builder.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/cpan/Test-Simple/lib/Test/Builder.pm b/cpan/Test-Simple/lib/Test/Builder.pm
index 2a1be725fd..09e0f1e6d3 100644
--- a/cpan/Test-Simple/lib/Test/Builder.pm
+++ b/cpan/Test-Simple/lib/Test/Builder.pm
@@ -4,7 +4,7 @@ use 5.006;
use strict;
use warnings;
-our $VERSION = '1.302045';
+our $VERSION = '1.302049';
BEGIN {
if( $] < 5.008 ) {
@@ -1183,6 +1183,7 @@ sub diag {
my $ctx = $self->ctx;
$ctx->diag(join '' => map {defined($_) ? $_ : 'undef'} @_);
$ctx->release;
+ return 0;
}
@@ -1193,6 +1194,7 @@ sub note {
my $ctx = $self->ctx;
$ctx->note(join '' => map {defined($_) ? $_ : 'undef'} @_);
$ctx->release;
+ return 0;
}