diff --git a/t/addresses.t b/t/addresses.t index c19b586..2e261d0 100644 --- a/t/addresses.t +++ b/t/addresses.t @@ -19,11 +19,11 @@ my $command = 'MAIL FROM: SIZE=1230'; is(($smtpd->command($command))[0], 250, $command); is($smtpd->transaction->sender->format, '', 'got the right sender'); -my $command = 'MAIL FROM:<>'; +$command = 'MAIL FROM:<>'; is(($smtpd->command($command))[0], 250, $command); is($smtpd->transaction->sender->format, '<>', 'got the right sender'); -my $command = 'MAIL FROM: SIZE=1230'; +$command = 'MAIL FROM: SIZE=1230'; is(($smtpd->command($command))[0], 250, $command); is($smtpd->transaction->sender->format, '', 'got the right sender');