From b738d6e4e7a2e2ab957b68b98c4bc76739336362 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Thu, 7 Jul 2016 20:04:25 +0100 Subject: [PATCH] Fix issue 187: exit test (#188) When not receiving a reply, exit the test and don't check the contents of the unreceived packet. Fixes #187 --- test/proxy_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/proxy_test.go b/test/proxy_test.go index fc1ff2854..56ef159fb 100644 --- a/test/proxy_test.go +++ b/test/proxy_test.go @@ -44,6 +44,7 @@ func TestLookupProxy(t *testing.T) { resp, err := p.Lookup(state, "example.org.", dns.TypeA) if err != nil { t.Error("Expected to receive reply, but didn't") + return } // expect answer section with A record in it if len(resp.Answer) == 0 {