aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSean Liao <sean@liao.dev>2025-10-05 23:17:40 +0100
committerGopher Robot <gobot@golang.org>2025-10-06 12:41:59 -0700
commitc2fb15164bdb9d44a302771be613fbef5faa4a8e (patch)
treea5d0f343c670d9671b433df8655525516f6563a7 /src
parentac2ec82172799b88c057bb9ded6fe24e7909e860 (diff)
downloadgo-c2fb15164bdb9d44a302771be613fbef5faa4a8e.tar.xz
testing/synctest: remove Run
Run (experimental) is replaced by Test. Fixes #74012 Change-Id: I1721e1edfbcb4f1fe2159dc0430a13685b2d08c4 Reviewed-on: https://go-review.googlesource.com/c/go/+/709355 Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com> Reviewed-by: Damien Neil <dneil@google.com> Auto-Submit: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Alan Donovan <adonovan@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/testing/synctest/run.go16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/testing/synctest/run.go b/src/testing/synctest/run.go
deleted file mode 100644
index 2e668ab863..0000000000
--- a/src/testing/synctest/run.go
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2025 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-//go:build goexperiment.synctest
-
-package synctest
-
-import "internal/synctest"
-
-// Run is deprecated.
-//
-// Deprecated: Use Test instead. Run will be removed in Go 1.26.
-func Run(f func()) {
- synctest.Run(f)
-}