From 7e3c5b528ec2bea8c488de0c156f1544b9272b7c Mon Sep 17 00:00:00 2001 From: Craig Peterson Date: Thu, 27 Jun 2019 01:26:48 -0400 Subject: [PATCH] fix unit tests --- providers/activedir/domains_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/activedir/domains_test.go b/providers/activedir/domains_test.go index cf9fe025d..2e4e03cec 100644 --- a/providers/activedir/domains_test.go +++ b/providers/activedir/domains_test.go @@ -24,7 +24,7 @@ func TestGetExistingRecords(t *testing.T) { } expected := []*models.RecordConfig{ makeRC("@", "test2", "10.166.2.11", models.RecordConfig{Type: "A", TTL: 600}), - //makeRC("_msdcs", "test2", "other_record", models.RecordConfig{Type: "NS", TTL: 300}), // Will be filtered. + makeRC("_msdcs", "test2", "other_record", models.RecordConfig{Type: "NS", TTL: 300}), makeRC("co-devsearch02", "test2", "10.8.2.64", models.RecordConfig{Type: "A", TTL: 3600}), makeRC("co-devservice01", "test2", "10.8.2.48", models.RecordConfig{Type: "A", TTL: 1200}), // Downcased. makeRC("yum", "test2", "10.8.0.59", models.RecordConfig{Type: "A", TTL: 3600}),