Update of /cvsroot/openinteract/OpenInteract2/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15300/t
Modified Files:
config_package.t
Log Message:
Rename second use of @emails to @alt_emails, since "my @emails;" was
declared twice
Index: config_package.t
===================================================================
RCS file: /cvsroot/openinteract/OpenInteract2/t/config_package.t,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** config_package.t 8 Feb 2005 13:30:15 -0000 1.11
--- config_package.t 8 Feb 2005 17:45:31 -0000 1.12
***************
*** 73,82 ****
is( $alt_names[1], 'Bar Foo',
'Second alt result from author_names()' );
! my @emails = $c->author_emails;
! is( scalar @emails, 2,
'Number of author emails returned' );
! is( $emails[0], '',
'First alt result from author_emails()' );
! is( $emails[1], 'ba...@fo...',
'Second alt result from author_emails()' );
--- 73,82 ----
is( $alt_names[1], 'Bar Foo',
'Second alt result from author_names()' );
! my @alt_emails = $c->author_emails;
! is( scalar @alt_emails, 2,
'Number of author emails returned' );
! is( $alt_emails[0], '',
'First alt result from author_emails()' );
! is( $alt_emails[1], 'ba...@fo...',
'Second alt result from author_emails()' );
|