1
0
mirror of https://github.com/golang/go synced 2024-09-30 18:18:32 -06:00

godoc/static: suppress gen_test on go1.9

Either string quotation or Go formatting has since changed.
Will investigate later, but this fixes the dashboard for now.

Change-Id: Ieab3800fc2c24ba86026d25dea12853131c04948
Reviewed-on: https://go-review.googlesource.com/118715
Reviewed-by: Robert Griesemer <gri@golang.org>
This commit is contained in:
Alan Donovan 2018-06-13 17:17:30 -04:00
parent c995a08888
commit 49ce10d933
2 changed files with 8 additions and 2 deletions

View File

@ -2,6 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//+build go1.10
package static
import (
@ -22,6 +24,10 @@ func TestStaticIsUpToDate(t *testing.T) {
}
if bytes.Compare(oldBuf, newBuf) != 0 {
t.Error("static.go is stale")
t.Error(`static.go is stale. Run:
$ go generate golang.org/x/tools/godoc/static
$ git diff
to see the differences.`)
}
}

File diff suppressed because one or more lines are too long