diff options
author | 2020-04-25 14:08:36 +0800 | |
---|---|---|
committer | 2020-04-25 08:08:36 +0200 | |
commit | ed1f42cf563e60068cadb96155423942917d0d47 (patch) | |
tree | 9e5db2f9744cc20b73ab3c0b8f370450d06f6106 /test/example_test.go | |
parent | 74eabe90e03b3c83edeb242ff9491b44a7e82cfc (diff) | |
download | coredns-ed1f42cf563e60068cadb96155423942917d0d47.tar.gz coredns-ed1f42cf563e60068cadb96155423942917d0d47.tar.zst coredns-ed1f42cf563e60068cadb96155423942917d0d47.zip |
Fix mixed indentation within tests (#3855)
Signed-off-by: Ambrose Chua <ambrose@chua.family>
Diffstat (limited to 'test/example_test.go')
-rw-r--r-- | test/example_test.go | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/example_test.go b/test/example_test.go index 9d8dec832..863b69fcc 100644 --- a/test/example_test.go +++ b/test/example_test.go @@ -2,15 +2,15 @@ package test const exampleOrg = `; example.org test file $TTL 3600 -@ IN SOA sns.dns.icann.org. noc.dns.icann.org. 2015082541 7200 3600 1209600 3600 -@ IN NS b.iana-servers.net. -@ IN NS a.iana-servers.net. -@ IN A 127.0.0.1 -@ IN A 127.0.0.2 -short 1 IN A 127.0.0.3 +@ IN SOA sns.dns.icann.org. noc.dns.icann.org. 2015082541 7200 3600 1209600 3600 +@ IN NS b.iana-servers.net. +@ IN NS a.iana-servers.net. +@ IN A 127.0.0.1 +@ IN A 127.0.0.2 +short 1 IN A 127.0.0.3 -*.w 3600 IN TXT "Wildcard" -a.b.c.w IN TXT "Not a wildcard" -cname IN CNAME www.example.net. -service IN SRV 8080 10 10 @ +*.w 3600 IN TXT "Wildcard" +a.b.c.w IN TXT "Not a wildcard" +cname IN CNAME www.example.net. +service IN SRV 8080 10 10 @ ` |