aboutsummaryrefslogtreecommitdiff
path: root/internal/postgres/insert_module_test.go
diff options
context:
space:
mode:
authorJulie Qiu <julie@golang.org>2020-06-16 22:51:46 -0400
committerJulie Qiu <julie@golang.org>2020-06-17 16:15:13 +0000
commit4ea5ad96b1650fd6d7a3e597feaa5367458e36d0 (patch)
tree2bf827bdc395905aade6da4fd1b152b876d6c1c3 /internal/postgres/insert_module_test.go
parent80f9cec73cce87e48fea5119fd064fdc9515d8f1 (diff)
downloadgo-x-pkgsite-4ea5ad96b1650fd6d7a3e597feaa5367458e36d0.tar.xz
internal: clean up issue links
This is the first CL to clean up various TODOs that are outdated, and replace internal issue links with GitHub issue links. Updates golang/go#39621 Change-Id: If270e8b2e8198c007cb4aa71ad8486182f4f3380 Reviewed-on: https://go-review.googlesource.com/c/pkgsite/+/238319 Reviewed-by: Jonathan Amsterdam <jba@google.com>
Diffstat (limited to 'internal/postgres/insert_module_test.go')
-rw-r--r--internal/postgres/insert_module_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/postgres/insert_module_test.go b/internal/postgres/insert_module_test.go
index cd5612fb..16275a56 100644
--- a/internal/postgres/insert_module_test.go
+++ b/internal/postgres/insert_module_test.go
@@ -285,7 +285,7 @@ func TestPostgres_ReadAndWriteModuleOtherColumns(t *testing.T) {
}
}
-func TestPostgres_DeleteModule(t *testing.T) {
+func TestDeleteModule(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background(), testTimeout)
defer cancel()
defer ResetTestDB(testDB, t)
@@ -309,7 +309,7 @@ func TestPostgres_DeleteModule(t *testing.T) {
if err != sql.ErrNoRows {
t.Errorf("imports_unique: got %v, want ErrNoRows", err)
}
- // TODO(b/154616892): check removal from version_map
+ // TODO(golang/go#39633): check removal from version_map
}
func TestPostgres_NewerAlternative(t *testing.T) {