test(userstore): fix incorrect type
This commit is contained in:
parent
839d7f43bc
commit
94505ae87b
1 changed files with 2 additions and 2 deletions
|
@ -39,8 +39,8 @@ func TestUserStores(t *testing.T) {
|
||||||
id, name1 := uint64(1), "test_user1"
|
id, name1 := uint64(1), "test_user1"
|
||||||
pwd1, pwd2 := "666", "888"
|
pwd1, pwd2 := "666", "888"
|
||||||
role1, role2 := UserRole, AdminRole
|
role1, role2 := UserRole, AdminRole
|
||||||
spaceLimit1, upLimit1, downLimit1 := 17, 5, 7
|
spaceLimit1, upLimit1, downLimit1 := int64(17), 5, 7
|
||||||
spaceLimit2, upLimit2, downLimit2 := 19, 13, 17
|
spaceLimit2, upLimit2, downLimit2 := int64(19), 13, 17
|
||||||
|
|
||||||
err = store.AddUser(&User{
|
err = store.AddUser(&User{
|
||||||
ID: id,
|
ID: id,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue