From 89f0a6f4ae473bc836af600e28d52bdcfb435c38 Mon Sep 17 00:00:00 2001 From: Matthew R Kasun Date: Sun, 17 Oct 2021 11:55:31 -0400 Subject: [PATCH] deleted troubleshooting function --- controllers/dnsHttpController_test.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/controllers/dnsHttpController_test.go b/controllers/dnsHttpController_test.go index 632fc0d9..d7849321 100644 --- a/controllers/dnsHttpController_test.go +++ b/controllers/dnsHttpController_test.go @@ -414,12 +414,3 @@ func deleteAllDNS(t *testing.T) { assert.Nil(t, err) } } - -func TestDeleteAllDNS(t *testing.T) { - database.InitializeDatabase() - deleteAllDNS(t) - dns, err := GetAllDNS() - assert.Nil(t, err) - assert.Equal(t, 0, len(dns)) - t.Log(dns) -}