aboutsummaryrefslogtreecommitdiff
path: root/src/go/types/issues_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/types/issues_test.go')
-rw-r--r--src/go/types/issues_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/go/types/issues_test.go b/src/go/types/issues_test.go
index 519e199536..51995af30a 100644
--- a/src/go/types/issues_test.go
+++ b/src/go/types/issues_test.go
@@ -634,7 +634,7 @@ var _ T = template /* ERROR cannot use.*text/template.* as T value */.Template{}
}
imp := importHelper{pkg: a, fallback: importer.Default()}
- checkFiles(t, nil, "", []string{"b.go"}, [][]byte{[]byte(bsrc)}, false, imp)
- checkFiles(t, nil, "", []string{"c.go"}, [][]byte{[]byte(csrc)}, false, imp)
- checkFiles(t, nil, "", []string{"t.go"}, [][]byte{[]byte(tsrc)}, false, imp)
+ testFiles(t, nil, []string{"b.go"}, [][]byte{[]byte(bsrc)}, false, imp)
+ testFiles(t, nil, []string{"c.go"}, [][]byte{[]byte(csrc)}, false, imp)
+ testFiles(t, nil, []string{"t.go"}, [][]byte{[]byte(tsrc)}, false, imp)
}