<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">From 5674620e7e66dca603ef708c92256ac6086f3fcd Mon Sep 17 00:00:00 2001
From: Slaven Rezic &lt;slaven@rezic.de&gt;
Date: Sat, 23 Dec 2023 20:49:50 +0100
Subject: [PATCH] fix skip count + avoid problems with wildcard DNS names
 (GH#53)

---
 t/valid.t | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/t/valid.t b/t/valid.t
index 966e164..1986bd1 100644
--- a/t/valid.t
+++ b/t/valid.t
@@ -128,11 +128,11 @@ ok(
 );
 
 SKIP: {
-  skip "your dns appears missing or failing to resolve", 3
+  skip "your dns appears missing or failing to resolve", 4
     unless eval { $v-&gt;address(-address=&gt; 'devnull@pobox.com', -mxcheck =&gt; 1) };
 
   if (
-    $v-&gt;address(-address =&gt; 'blort@will-never-exist.pobox.com', -mxcheck =&gt; 1)
+    $v-&gt;address(-address =&gt; 'blort@will-never-exist.pobox.com.', -mxcheck =&gt; 1)
   ) {
     skip "your dns is lying to you; you must not use mxcheck", 3;
   }
@@ -143,7 +143,7 @@ SKIP: {
   );
 
   ok(
-    !$v-&gt;address(-address =&gt; 'blort@will-never-exist.pobox.com', -mxcheck =&gt; 1),
+    !$v-&gt;address(-address =&gt; 'blort@will-never-exist.pobox.com.', -mxcheck =&gt; 1),
     'blort@will-never-exist.pobox.com, with mxcheck, is invalid',
   ) or diag "was using $Email::Valid::DNS_Method for dns resolution";
 
-- 
2.11.0

</pre></body></html>