another test tweak, for switching from 192.168 to 192.0

This commit is contained in:
Matt Simerson 2012-05-21 16:35:24 -04:00
parent 8795d4fd6e
commit 732202ae37

View File

@ -20,7 +20,7 @@ is($smtpd->config('me'), 'some.host.example.org', 'config("me")');
# test for ignoring leading/trailing whitespace (relayclients has a
# line with both)
my $relayclients = join ",", sort $smtpd->config('relayclients');
is($relayclients, '127.0.0.1,192.168.', 'config("relayclients") are trimmed');
is($relayclients, '127.0.0.1,192.0.', 'config("relayclients") are trimmed');
unlink "./config.sample/me";