aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBryan C. Mills <bcmills@google.com>2018-11-05 10:49:22 -0500
committerBryan C. Mills <bcmills@google.com>2018-11-29 18:59:02 +0000
commit20950dba2609a1aff01a4bf950e2d0d2792f1b87 (patch)
treec98c56f11dce9a6b2610aaa3c13028d7f3bb3edb /src
parentaab0b704d88b7dad10c767ad941619d59887203c (diff)
downloadgo-20950dba2609a1aff01a4bf950e2d0d2792f1b87.tar.xz
cmd/go/testdata/mod: remove unused research.swtch.com/vgo-tour
The test that used that module was removed in https://golang.org/cl/128900. Change-Id: Id96270a52398c8ccc09821efb2a6a6b4764f44d9 Reviewed-on: https://go-review.googlesource.com/c/151560 Run-TryBot: Bryan C. Mills <bcmills@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src')
-rw-r--r--src/cmd/go/testdata/mod/research.swtch.com_vgo-tour_v1.0.0.txt23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/cmd/go/testdata/mod/research.swtch.com_vgo-tour_v1.0.0.txt b/src/cmd/go/testdata/mod/research.swtch.com_vgo-tour_v1.0.0.txt
deleted file mode 100644
index 0f060dc8e3..0000000000
--- a/src/cmd/go/testdata/mod/research.swtch.com_vgo-tour_v1.0.0.txt
+++ /dev/null
@@ -1,23 +0,0 @@
-research.swtch.com/vgo-tour@v1.0.0
-
--- .mod --
-module "research.swtch.com/vgo-tour"
--- .info --
-{"Version":"v1.0.0","Name":"84de74b35823c1e49634f2262f1a58cfc951ebae","Short":"84de74b35823","Time":"2018-02-20T00:04:00Z"}
--- go.mod --
-module "research.swtch.com/vgo-tour"
--- hello.go --
-// Copyright 2018 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.
-
-package main
-
-import (
- "fmt"
- "rsc.io/quote"
-)
-
-func main() {
- fmt.Println(quote.Hello())
-}