🐞 Skip IPv6 test when IPv4-only, REALLY

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: <https://ci.nono.io/teams/main/pipelines/sslip.io/jobs/unit/builds/6>
```
dig: couldn't get address for '::1': address family not supported
```
This commit is contained in:
Brian Cunnie
2021-07-27 11:44:04 -04:00
parent cdeb5a8768
commit ebbcb744c6

View File

@@ -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() {