Skip to content

Commit

Permalink
fix //tests/integration/gazelle:gazelle_test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jay Conrod committed Dec 23, 2020
1 parent 24f57f8 commit bcadab1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/gazelle/gazelle_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func TestMain(m *testing.M) {
-- BUILD.bazel --
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix example.com/g
# gazelle:prefix example.com/hello
gazelle(
name = "gazelle",
)
Expand Down Expand Up @@ -56,15 +56,15 @@ func TestUpdate(t *testing.T) {
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix example.com/g
# gazelle:prefix example.com/hello
gazelle(
name = "gazelle",
)
go_library(
name = "go_default_library",
name = "hello",
srcs = ["hello.go"],
importpath = "example.com/g",
importpath = "example.com/hello",
visibility = ["//visibility:public"],
)
`)
Expand Down

0 comments on commit bcadab1

Please sign in to comment.