Skip to content

Commit bcadab1

Browse files
author
Jay Conrod
committed
fix //tests/integration/gazelle:gazelle_test
1 parent 24f57f8 commit bcadab1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integration/gazelle/gazelle_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func TestMain(m *testing.M) {
2828
-- BUILD.bazel --
2929
load("@bazel_gazelle//:def.bzl", "gazelle")
3030
31-
# gazelle:prefix example.com/g
31+
# gazelle:prefix example.com/hello
3232
gazelle(
3333
name = "gazelle",
3434
)
@@ -56,15 +56,15 @@ func TestUpdate(t *testing.T) {
5656
load("@io_bazel_rules_go//go:def.bzl", "go_library")
5757
load("@bazel_gazelle//:def.bzl", "gazelle")
5858
59-
# gazelle:prefix example.com/g
59+
# gazelle:prefix example.com/hello
6060
gazelle(
6161
name = "gazelle",
6262
)
6363
6464
go_library(
65-
name = "go_default_library",
65+
name = "hello",
6666
srcs = ["hello.go"],
67-
importpath = "example.com/g",
67+
importpath = "example.com/hello",
6868
visibility = ["//visibility:public"],
6969
)
7070
`)

0 commit comments

Comments
 (0)