about summary refs log tree commit
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2016-06-28 14:26:05 +0100
committerGitHub <noreply@github.com>2016-06-28 14:26:05 +0100
commit90b6e08518beb8f2a837abc8d47f3cfdc4966fa4 (patch)
treef5e56a907e1b4892849a2ea5e0bdf354e216737f
parente8340ba23c44f80ce6c13571dfbcca119d56701a (diff)
parent9bee02b7edf5d070fa02f515e8489d8175daaa9c (diff)
downloadperl-libnet-90b6e08518beb8f2a837abc8d47f3cfdc4966fa4.tar.gz
Merge pull request #28 from jkeenan/uninit_value_in_ipv6_tests
Adapt tests to Test2 revision of Test::More::note().
-rw-r--r--t/nntp_ipv6.t1
-rw-r--r--t/pop3_ipv6.t1
-rw-r--r--t/smtp_ipv6.t1
3 files changed, 3 insertions, 0 deletions
diff --git a/t/nntp_ipv6.t b/t/nntp_ipv6.t
index 1992618..768489a 100644
--- a/t/nntp_ipv6.t
+++ b/t/nntp_ipv6.t
@@ -63,4 +63,5 @@ sub nntp_server {
     }
   }
   note("NNTP dialog done");
+  return 0;
 }
diff --git a/t/pop3_ipv6.t b/t/pop3_ipv6.t
index 1c88c1a..db31128 100644
--- a/t/pop3_ipv6.t
+++ b/t/pop3_ipv6.t
@@ -63,4 +63,5 @@ sub pop3_server {
   }
 
   note("POP3 dialog done");
+  return 0;
 }
diff --git a/t/smtp_ipv6.t b/t/smtp_ipv6.t
index a31b6ff..f430721 100644
--- a/t/smtp_ipv6.t
+++ b/t/smtp_ipv6.t
@@ -65,4 +65,5 @@ sub smtp_server {
   }
 
   note("SMTP dialog done");
+  return 0;
 }