mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
go vet fix for TestfillLicense
This small fix renames `TestfillLicense` to `TestFillLicense` as otherwise go vet reports: ``` $ go tool vet daemon/licensing_test.go daemon/licensing_test.go:11: TestfillLicense has malformed name: first letter after 'Test' must not be lowercase ``` Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
edf5134ba7
commit
1082d1edf2
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ import (
|
||||||
"gotest.tools/assert"
|
"gotest.tools/assert"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestfillLicense(t *testing.T) {
|
func TestFillLicense(t *testing.T) {
|
||||||
v := &types.Info{}
|
v := &types.Info{}
|
||||||
d := &Daemon{
|
d := &Daemon{
|
||||||
root: "/var/lib/docker/",
|
root: "/var/lib/docker/",
|
||||||
|
|
Loading…
Add table
Reference in a new issue