cmd/bench: quick fix for go test argument in goTestSubrepo

Change-Id: If96a795816f885e970e5b11809656efdadbb6d1c
Reviewed-on: https://go-review.googlesource.com/c/benchmarks/+/458916
Reviewed-by: Michael Pratt <mpratt@google.com>
Run-TryBot: Dylan Le <dungtuanle@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
diff --git a/cmd/bench/gotest.go b/cmd/bench/gotest.go
index 67c7a38..5e5301c 100644
--- a/cmd/bench/gotest.go
+++ b/cmd/bench/gotest.go
@@ -29,7 +29,7 @@
 		fmt.Printf("toolchain: %s\n", tc.Name)
 
 		for _, dir := range dirs {
-			err := tc.Do(filepath.Join(dir, "gopls"), "test", "-v", "-bench=BenchmarkGoToDefinition", "./gopls/internal/regtest/bench/", "-count=5")
+			err := tc.Do(filepath.Join(dir, "gopls"), "test", "-v", "-bench=BenchmarkGoToDefinition", "./internal/regtest/bench/", "-count=5")
 			if err != nil {
 				log.Printf("Error: %v", err)
 				return fmt.Errorf("error running sub-repo %s benchmark with toolchain %s in dir %s: %w", subRepo, tc.Name, dir, err)