aboutsummaryrefslogtreecommitdiff
path: root/args_test.go
diff options
context:
space:
mode:
authorGravatar ZhangYunHao <zyunhjob@163.com> 2019-10-23 20:12:59 +0800
committerGravatar Erik Dubbelboer <erik@dubbelboer.com> 2019-10-23 20:12:59 +0800
commit707b1c1917f38038d0d81e856df73853513100b3 (patch)
tree83cca3dc50f7cf9512ca0a10e5e2cc6af6c512b0 /args_test.go
parentfasthttputil: add errInmemoryListenerClosed (#678) (diff)
downloadfasthttp-707b1c1917f38038d0d81e856df73853513100b3.tar.gz
fasthttp-707b1c1917f38038d0d81e856df73853513100b3.tar.bz2
fasthttp-707b1c1917f38038d0d81e856df73853513100b3.zip
Format errors (#679)
* format errors * Server is a type name * Fix typo
Diffstat (limited to 'args_test.go')
-rw-r--r--args_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/args_test.go b/args_test.go
index 503bb38..722c6ce 100644
--- a/args_test.go
+++ b/args_test.go
@@ -450,7 +450,7 @@ func TestArgsSetGetDel(t *testing.T) {
a.Parse("aaa=xxx&bb=aa")
if string(a.Peek("foo0")) != "" {
- t.Fatalf("Unepxected value %q", a.Peek("foo0"))
+ t.Fatalf("Unexpected value %q", a.Peek("foo0"))
}
if string(a.Peek("aaa")) != "xxx" {
t.Fatalf("Unexpected value %q. Expected %q", a.Peek("aaa"), "xxx")