Do not return a pointer

This commit is contained in:
Juan Font Alonso 2021-10-10 12:43:41 +02:00
parent d70c3d6189
commit 5ce1526a06
3 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@ func (s *Suite) TestMagicDNSRootDomains100(c *check.C) {
c.Assert(err, check.IsNil)
found := false
for _, domain := range *domains {
for _, domain := range domains {
if domain == "64.100.in-addr.arpa." {
found = true
break
@ -20,7 +20,7 @@ func (s *Suite) TestMagicDNSRootDomains100(c *check.C) {
c.Assert(found, check.Equals, true)
found = false
for _, domain := range *domains {
for _, domain := range domains {
if domain == "100.100.in-addr.arpa." {
found = true
break
@ -29,7 +29,7 @@ func (s *Suite) TestMagicDNSRootDomains100(c *check.C) {
c.Assert(found, check.Equals, true)
found = false
for _, domain := range *domains {
for _, domain := range domains {
if domain == "127.100.in-addr.arpa." {
found = true
break
@ -44,7 +44,7 @@ func (s *Suite) TestMagicDNSRootDomains172(c *check.C) {
c.Assert(err, check.IsNil)
found := false
for _, domain := range *domains {
for _, domain := range domains {
if domain == "0.16.172.in-addr.arpa." {
found = true
break
@ -53,7 +53,7 @@ func (s *Suite) TestMagicDNSRootDomains172(c *check.C) {
c.Assert(found, check.Equals, true)
found = false
for _, domain := range *domains {
for _, domain := range domains {
if domain == "255.16.172.in-addr.arpa." {
found = true
break