diff options
Diffstat (limited to 'plugin/file/reload_test.go')
-rw-r--r-- | plugin/file/reload_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/plugin/file/reload_test.go b/plugin/file/reload_test.go index 0c644d484..f9e544372 100644 --- a/plugin/file/reload_test.go +++ b/plugin/file/reload_test.go @@ -9,7 +9,6 @@ import ( "time" "github.com/coredns/coredns/plugin/test" - "github.com/coredns/coredns/plugin/transfer" "github.com/coredns/coredns/request" "github.com/miekg/dns" @@ -31,7 +30,7 @@ func TestZoneReload(t *testing.T) { } z.ReloadInterval = 500 * time.Millisecond - z.Reload(&transfer.Transfer{}) + z.Reload() time.Sleep(time.Second) ctx := context.TODO() |