diff options
Diffstat (limited to 'plugin/dnstap/handler_test.go')
-rw-r--r-- | plugin/dnstap/handler_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/dnstap/handler_test.go b/plugin/dnstap/handler_test.go index acfbc8770..e8a0d7020 100644 --- a/plugin/dnstap/handler_test.go +++ b/plugin/dnstap/handler_test.go @@ -42,10 +42,10 @@ func (w *writer) Dnstap(e tap.Dnstap) { got := e.Message if string(ex.QueryAddress) != string(got.QueryAddress) { - w.t.Errorf("Expected source adress %s, got %s", ex.QueryAddress, got.QueryAddress) + w.t.Errorf("Expected source address %s, got %s", ex.QueryAddress, got.QueryAddress) } if string(ex.ResponseAddress) != string(got.ResponseAddress) { - w.t.Errorf("Expected response adress %s, got %s", ex.ResponseAddress, got.ResponseAddress) + w.t.Errorf("Expected response address %s, got %s", ex.ResponseAddress, got.ResponseAddress) } if *ex.QueryPort != *got.QueryPort { w.t.Errorf("Expected port %d, got %d", *ex.QueryPort, *got.QueryPort) |