Remove further ::1 references from tests for travis

This commit is contained in:
Heikki Hannikainen 2016-08-05 23:25:36 +03:00
parent 8e82b48900
commit 5c292c5974
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ BEGIN {
ok(1); # If we made it this far, we're ok.
my $iss6 = new Ham::APRS::IS_Fake('[::1]:54153', 'FAKEIS');
my $iss6 = new Ham::APRS::IS_Fake('[::]:54153', 'FAKEIS');
ok(defined $iss6, 1, "Test failed to initialize listening server socket on IPv6");
$iss6->bind_and_listen();

View File

@ -42,7 +42,7 @@ my $iss1 = new Ham::APRS::IS_Fake('127.0.0.1:54153', 'FAKE4');
ok(defined $iss1, 1, "Test failed to initialize listening server socket");
$iss1->bind_and_listen();
my $iss6 = new Ham::APRS::IS_Fake('[::1]:54153', 'FAKE6');
my $iss6 = new Ham::APRS::IS_Fake('[::]:54153', 'FAKE6');
ok(defined $iss6, 1, "Test failed to initialize listening server socket on IPv6");
$iss6->bind_and_listen();