mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 18:08:57 +08:00
Use ns1.example.com, not ns1.otherdomain.tld, in integration tests
This commit is contained in:
parent
2c0361b0d5
commit
35e37ff91f
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ func TestDualProviders(t *testing.T) {
|
||||||
run()
|
run()
|
||||||
// add bogus nameservers
|
// add bogus nameservers
|
||||||
dc.Records = []*models.RecordConfig{}
|
dc.Records = []*models.RecordConfig{}
|
||||||
dc.Nameservers = append(dc.Nameservers, models.StringsToNameservers([]string{"ns1.otherdomain.tld", "ns2.otherdomain.tld"})...)
|
dc.Nameservers = append(dc.Nameservers, models.StringsToNameservers([]string{"ns1.example.com", "ns2.example.com"})...)
|
||||||
nameservers.AddNSRecords(dc)
|
nameservers.AddNSRecords(dc)
|
||||||
t.Log("Adding nameservers from another provider")
|
t.Log("Adding nameservers from another provider")
|
||||||
run()
|
run()
|
||||||
|
|
Loading…
Reference in a new issue