aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJes Cok <xigua67damn@gmail.com>2024-04-20 16:27:17 +0800
committerGopher Robot <gobot@golang.org>2024-04-22 22:06:46 +0000
commit674657e1304b0ea1815257623150a2e06d8ddac2 (patch)
tree70feb7db0741f55eecffe5afd5b16033376163ad
parent5a3b6400ef053d52a3dd25e945f647bc7ea2b088 (diff)
downloadgo-674657e1304b0ea1815257623150a2e06d8ddac2.tar.gz
go-674657e1304b0ea1815257623150a2e06d8ddac2.zip
net/http: correct error messages for TestParseSetCookie
This change fixes typos in error messages, while here, also improves 'line' strings to indicate the errEqualNotFoundInCookie error. Change-Id: I0ce6115c605844d2d86f337f208fd3b2d3774674 Reviewed-on: https://go-review.googlesource.com/c/go/+/579799 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Damien Neil <dneil@google.com> Reviewed-by: Joedian Reid <joedian@google.com> Auto-Submit: Damien Neil <dneil@google.com>
-rw-r--r--src/net/http/cookie_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/net/http/cookie_test.go b/src/net/http/cookie_test.go
index de476825cf..fdbe2723e3 100644
--- a/src/net/http/cookie_test.go
+++ b/src/net/http/cookie_test.go
@@ -709,7 +709,7 @@ func TestParseCookie(t *testing.T) {
err: errBlankCookie,
},
{
- line: "whatever",
+ line: "equal-not-found",
err: errEqualNotFoundInCookie,
},
{
@@ -867,7 +867,7 @@ func TestParseSetCookie(t *testing.T) {
err: errBlankCookie,
},
{
- line: "whatever",
+ line: "equal-not-found",
err: errEqualNotFoundInCookie,
},
{
@@ -882,10 +882,10 @@ func TestParseSetCookie(t *testing.T) {
for i, tt := range tests {
gotCookie, gotErr := ParseSetCookie(tt.line)
if !errors.Is(gotErr, tt.err) {
- t.Errorf("#%d ParseCookie got error %v, want error %v", i, gotErr, tt.err)
+ t.Errorf("#%d ParseSetCookie got error %v, want error %v", i, gotErr, tt.err)
}
if !reflect.DeepEqual(gotCookie, tt.cookie) {
- t.Errorf("#%d ParseCookie:\ngot cookie: %s\nwant cookie: %s\n", i, toJSON(gotCookie), toJSON(tt.cookie))
+ t.Errorf("#%d ParseSetCookie:\ngot cookie: %s\nwant cookie: %s\n", i, toJSON(gotCookie), toJSON(tt.cookie))
}
}
}