goimport files

This commit is contained in:
Artur Neumann
2020-08-26 09:10:51 +05:45
parent f53ff23451
commit 63bacfb0cd
2 changed files with 7 additions and 6 deletions

View File

@@ -21,11 +21,11 @@ import (
)
var (
service grpc.Service
handler svc.Service
bundleService proto.BundleService
valueService proto.ValueService
roleService proto.RoleService
service grpc.Service
handler svc.Service
bundleService proto.BundleService
valueService proto.ValueService
roleService proto.RoleService
permissionService proto.PermissionService
testAccountID = "e8a7f56b-10ce-4f67-b67f-eca40aa0ef26"
@@ -935,7 +935,7 @@ func TestListRolesAfterSavingBundle(t *testing.T) {
name: bundle.Name,
})
}
assert.Equal(t, len(tt.expectedBundles) , len(rolesRes.Bundles))
assert.Equal(t, len(tt.expectedBundles), len(rolesRes.Bundles))
})
}
}

View File

@@ -3,6 +3,7 @@ package svc
import (
"context"
"fmt"
"github.com/golang/protobuf/ptypes/empty"
merrors "github.com/micro/go-micro/v2/errors"
"github.com/micro/go-micro/v2/metadata"