mirror of
https://github.com/golang/go
synced 2024-11-24 05:50:13 -07:00
path: present the correct error message in TestMatch
The message was hardcoded to indicate that the test wanted a nil error, even
though in some cases a specific error was wanted. This patch fixes the
message to print the wanted error.
Change-Id: Id86ea89d6f41f25bfa164acc50142ae8ff0ec410
GitHub-Last-Rev: c220374845
GitHub-Pull-Request: golang/go#26674
Reviewed-on: https://go-review.googlesource.com/126619
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
154394f8d3
commit
f6a5fada27
@ -73,7 +73,7 @@ func TestMatch(t *testing.T) {
|
|||||||
for _, tt := range matchTests {
|
for _, tt := range matchTests {
|
||||||
ok, err := Match(tt.pattern, tt.s)
|
ok, err := Match(tt.pattern, tt.s)
|
||||||
if ok != tt.match || err != tt.err {
|
if ok != tt.match || err != tt.err {
|
||||||
t.Errorf("Match(%#q, %#q) = %v, %v want %v, nil", tt.pattern, tt.s, ok, err, tt.match)
|
t.Errorf("Match(%#q, %#q) = %v, %v want %v, %v", tt.pattern, tt.s, ok, err, tt.match, tt.err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user