From 299f52e847f5fdfc0ef17403d1b24cf623f2280d Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Sat, 12 Nov 2016 15:01:53 +1100 Subject: [PATCH] add missing testFunc.Unordered field --- test/gotest.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/gotest.go b/test/gotest.go index a6a5a2f..ba17a36 100644 --- a/test/gotest.go +++ b/test/gotest.go @@ -177,9 +177,10 @@ func (t *testFuncs) Tested() string { } type testFunc struct { - Package string // imported package name (_test or _xtest) - Name string // function name - Output string // output, for examples + Package string // imported package name (_test or _xtest) + Name string // function name + Output string // output, for examples + Unordered bool // TODO(dfc) used for tested output of examples. } var testFileSet = token.NewFileSet()