From ebbcb744c6bb40d8d9717fe92e0d21c4734b5303 Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Tue, 27 Jul 2021 11:44:04 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20Skip=20IPv6=20test=20when=20IPv4?= =?UTF-8?q?-only,=20REALLY?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This time it's fixed for sure. I should have tested the previous commit before I pushed it. Or I could have re-written the git history to make a complete commit, but as an exercise in humility I decided to allow my mistakes to be seen. fixes: ``` dig: couldn't get address for '::1': address family not supported ``` --- bosh-release/src/sslip.io-dns-server/integration_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/bosh-release/src/sslip.io-dns-server/integration_test.go b/bosh-release/src/sslip.io-dns-server/integration_test.go index dac8d7c..f457053 100644 --- a/bosh-release/src/sslip.io-dns-server/integration_test.go +++ b/bosh-release/src/sslip.io-dns-server/integration_test.go @@ -118,10 +118,6 @@ var _ = Describe("sslip.io-dns-server", func() { "@127.0.0.1 ip. txt +short", `127.0.0.1`, `TypeTXT ip\. \? \["127.0.0.1"\]`), - Entry("TXT is the querier's IPv6 address when there are no custom/acme records", - "@::1 ip. txt +short", - `::1`, - `TypeTXT ip\. \? \["::1"\]`), ) }) Describe("for more complex assertions", func() {