summaryrefslogtreecommitdiffstats
path: root/client/client_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'client/client_test.go')
-rw-r--r--client/client_test.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/client_test.go b/client/client_test.go
index b0309c7..5aa7081 100644
--- a/client/client_test.go
+++ b/client/client_test.go
@@ -30,6 +30,13 @@ func TestGet(t *testing.T) {
r.Header.Get("Cache-Control"))
return
}
+
+ // Check accept header.
+ if r.Header.Get("Accept") != "application/geo+json" {
+ t.Errorf("header: accept: %v != application/geo+json",
+ r.Header.Get("Accept"))
+ return
+ }
fmt.Fprint(w, "OK")
}))
defer ts.Close()