aboutsummaryrefslogtreecommitdiff
path: root/header_test.go
diff options
context:
space:
mode:
authorGravatar Kazumasa Takenaka (Bamboo) <38031626+ktakenaka@users.noreply.github.com> 2021-07-17 22:51:59 +0700
committerGravatar GitHub <noreply@github.com> 2021-07-17 17:51:59 +0200
commit9466cd7657c9b3e3ec7e2601114ffaaa739aeed4 (patch)
treeadf7685d566288461c76e67f8422f0fecb0232ef /header_test.go
parentUpdate README.md (#1058) (diff)
downloadfasthttp-9466cd7657c9b3e3ec7e2601114ffaaa739aeed4.tar.gz
fasthttp-9466cd7657c9b3e3ec7e2601114ffaaa739aeed4.tar.bz2
fasthttp-9466cd7657c9b3e3ec7e2601114ffaaa739aeed4.zip
fix typo: occured -> occurred (#1061)
Diffstat (limited to 'header_test.go')
-rw-r--r--header_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/header_test.go b/header_test.go
index 0f463ce..575fae4 100644
--- a/header_test.go
+++ b/header_test.go
@@ -29,7 +29,7 @@ func TestResponseHeaderAddContentType(t *testing.T) {
h.WriteTo(&buf) //nolint:errcheck
if n := strings.Count(buf.String(), "Content-Type: "); n != 1 {
- t.Errorf("Content-Type occured %d times", n)
+ t.Errorf("Content-Type occurred %d times", n)
}
}