blob: 3de460ab0951a8fc23da4a2d3c83544f0db16e1a [file] [log] [blame]
// +build !go1.7
package plist
import "testing"
func subtest(t *testing.T, name string, f func(t *testing.T)) {
// Subtests don't exist for Go <1.7, and we can't create our own testing.T to substitute in
// for f's argument.
f(t)
}