Use ns1.example.com, not ns1.otherdomain.tld, in integration tests

This commit is contained in:
Anton Yurchenko 2020-01-15 06:19:53 +07:00 committed by Tom Limoncelli
parent 2c0361b0d5
commit 35e37ff91f

View file

@ -181,7 +181,7 @@ func TestDualProviders(t *testing.T) {
run()
// add bogus nameservers
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)
t.Log("Adding nameservers from another provider")
run()