aboutsummaryrefslogtreecommitdiff
path: root/client_test.go
diff options
context:
space:
mode:
authorGravatar Sergey Ponomarev <stokito@gmail.com> 2022-02-09 11:19:34 +0200
committerGravatar GitHub <noreply@github.com> 2022-02-09 10:19:34 +0100
commit6a3cc2325b1861525198ba850cf55df0caab4911 (patch)
tree26b2cd62c80f7a9b0ff7c446b05e97e4b2427ecf /client_test.go
parentUpdate dependencies (#1204) (diff)
downloadfasthttp-6a3cc2325b1861525198ba850cf55df0caab4911.tar.gz
fasthttp-6a3cc2325b1861525198ba850cf55df0caab4911.tar.bz2
fasthttp-6a3cc2325b1861525198ba850cf55df0caab4911.zip
uri_test.go use example.com for clearness (#1212)
* uri_test.go replace xxx.com with example.com * uri_test.go replace foobar.com with example.com * uri_test.go use example.com inside of testURIUpdate() * uri_test.go use example.com instead of google.com * uri_test.go use example.com instead of google.com * uri_test.go testURIUpdate() host with port
Diffstat (limited to 'client_test.go')
-rw-r--r--client_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client_test.go b/client_test.go
index e5c4f43..78eda2e 100644
--- a/client_test.go
+++ b/client_test.go
@@ -808,7 +808,7 @@ func TestClientDoWithCustomHeaders(t *testing.T) {
uri := "/foo/bar/baz?a=b&cd=12"
headers := map[string]string{
"Foo": "bar",
- "Host": "xxx.com",
+ "Host": "example.com",
"Content-Type": "asdfsdf",
"a-b-c-d-f": "",
}