Browse code

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>

Yong Tang authored on 2018/12/09 09:51:37
Showing 1 changed files
... ...
@@ -8,7 +8,7 @@ import (
8 8
 	"gotest.tools/assert"
9 9
 )
10 10
 
11
-func TestfillLicense(t *testing.T) {
11
+func TestFillLicense(t *testing.T) {
12 12
 	v := &types.Info{}
13 13
 	d := &Daemon{
14 14
 		root: "/var/lib/docker/",