deleted troubleshooting function

This commit is contained in:
Matthew R Kasun 2021-10-17 11:55:31 -04:00
parent 4884496d66
commit 89f0a6f4ae

View file

@ -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)
}