change convention

This commit is contained in:
2021-05-24 00:11:57 +03:00
parent fa6118d5c7
commit 756ebd4dc9
2 changed files with 7 additions and 7 deletions

View File

@@ -8,11 +8,11 @@ go_library(
)
go_test(
name = "rootfs_test",
name = "go_default_test",
srcs = ["rootfs_test.go"],
embed = [":rootfs"],
embed = [":go_default_library"],
deps = [
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
"@com_github_stretchr_testify//assert:go_default_library",
"@com_github_stretchr_testify//require:go_default_library",
],
)