From fb053829f9cad92527e7df93b17e211f5885a783 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Mon, 18 Oct 2021 13:13:04 -0700 Subject: [PATCH] Update testDeps definition for https://golang.org/cl/354632 The in-progress Go 1.18's testing.corpusEntry changed definition slightly in https://golang.org/cl/354632. Update our definition to the new version. PiperOrigin-RevId: 404040853 --- test/runtimes/runner/lib/lib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtimes/runner/lib/lib.go b/test/runtimes/runner/lib/lib.go index d704f8895..6b95b4cfa 100644 --- a/test/runtimes/runner/lib/lib.go +++ b/test/runtimes/runner/lib/lib.go @@ -209,7 +209,7 @@ func (f testDeps) SnapshotCoverage() {} // Copied from testing/fuzz.go. type corpusEntry = struct { Parent string - Name string + Path string Data []byte Values []interface{} Generation int