diff options
author | Michael G. Schwern <schwern@pobox.com> | 2005-09-26 07:21:09 -0700 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-27 06:40:09 +0000 |
commit | 5600ef16f38e8e0480b522a986156b017203c369 (patch) | |
tree | 7e564284019ea727e94433877b6df9485143f041 /lib/Pod | |
parent | 8e180e821340074db62baf476e6c5d624c9aee27 (diff) | |
download | perl-5600ef16f38e8e0480b522a986156b017203c369.tar.gz |
Warnings in tests @25605 due to cmp_ok behavior change.
Message-ID: <20050926212109.GA11036@windhund.schwern.org>
p4raw-id: //depot/perl@25610
Diffstat (limited to 'lib/Pod')
-rw-r--r-- | lib/Pod/t/InputObjects.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Pod/t/InputObjects.t b/lib/Pod/t/InputObjects.t index d086086477..0beeb4e5d4 100644 --- a/lib/Pod/t/InputObjects.t +++ b/lib/Pod/t/InputObjects.t @@ -37,7 +37,7 @@ use_ok( 'Pod::InputObjects' ); is( $p_p1->cmd_name(), 'head2', 'Pod::Paragraph->cmd_name()' ); is( $p_p1->cmd_name( 'head1' ), 'head1', 'Pod::Paragraph->cmd_name( head1 )' ); - cmp_ok( $p_p2->cmd_name(), 'eq', '', + ok( !$p_p2->cmd_name(), 'Pod::Paragraph->cmd_name() revisited' ); is( $p_p1->text(), 'NAME', 'Pod::Paragraph->text()' ); |