From 35e37ff91f9272b20c7d4eefcafbd7a832346b95 Mon Sep 17 00:00:00 2001 From: Anton Yurchenko Date: Wed, 15 Jan 2020 06:19:53 +0700 Subject: [PATCH] Use ns1.example.com, not ns1.otherdomain.tld, in integration tests --- integrationTest/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationTest/integration_test.go b/integrationTest/integration_test.go index 61cbaf3f2..cec39b23f 100644 --- a/integrationTest/integration_test.go +++ b/integrationTest/integration_test.go @@ -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()