diff options
| author | shawnps <shawnpsmith@gmail.com> | 2017-01-07 08:23:11 -0800 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2017-01-07 16:53:25 +0000 |
| commit | 067bab00a80e028f1d7ce553b27aba2aa3e9675f (patch) | |
| tree | b81638335e93b794eab298a80866fa6478f349c1 /src/testing | |
| parent | 8fa2344e98aa0eb2ef5a401847a4b760e9d19418 (diff) | |
| download | go-067bab00a80e028f1d7ce553b27aba2aa3e9675f.tar.xz | |
all: fix misspellings
Change-Id: I429637ca91f7db4144f17621de851a548dc1ce76
Reviewed-on: https://go-review.googlesource.com/34923
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Daniel Martà <mvdan@mvdan.cc>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/testing')
| -rw-r--r-- | src/testing/sub_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testing/sub_test.go b/src/testing/sub_test.go index 2a24aaacfd..8d5d9206f0 100644 --- a/src/testing/sub_test.go +++ b/src/testing/sub_test.go @@ -357,7 +357,7 @@ func TestTRun(t *T) { want := strings.TrimSpace(tc.output) re := makeRegexp(want) if ok, err := regexp.MatchString(re, got); !ok || err != nil { - t.Errorf("%s:ouput:\ngot:\n%s\nwant:\n%s", tc.desc, got, want) + t.Errorf("%s:output:\ngot:\n%s\nwant:\n%s", tc.desc, got, want) } } } @@ -498,7 +498,7 @@ func TestBRun(t *T) { want := strings.TrimSpace(tc.output) re := makeRegexp(want) if ok, err := regexp.MatchString(re, got); !ok || err != nil { - t.Errorf("%s:ouput:\ngot:\n%s\nwant:\n%s", tc.desc, got, want) + t.Errorf("%s:output:\ngot:\n%s\nwant:\n%s", tc.desc, got, want) } } } |
