Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
candiduslynx committed Apr 17, 2023
1 parent 1234260 commit cc52c83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion group_members.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ type BillableGroupMember struct {
Email string `json:"email"`
LastActivityOn *ISOTime `json:"last_activity_on"`
MembershipType string `json:"membership_type"`
Removeable bool `json:"removeable"`
Removable bool `json:"removable"`
CreatedAt *time.Time `json:"created_at"`
IsLastOwner bool `json:"is_last_owner"`
LastLoginAt *time.Time `json:"last_login_at"`
Expand Down
4 changes: 2 additions & 2 deletions group_members_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ func TestListBillableGroupMembers(t *testing.T) {
"web_url":"http://192.168.1.8:3000/root",
"last_activity_on":"2021-01-27",
"membership_type": "group_member",
"removeable": true,
"removable": true,
"created_at": "2017-10-23T11:41:28.793Z",
"is_last_owner": false,
"last_login_at": "2022-12-12T09:22:51.581Z"
Expand Down Expand Up @@ -71,7 +71,7 @@ func TestListBillableGroupMembers(t *testing.T) {
WebURL: "http://192.168.1.8:3000/root",
LastActivityOn: &lastActivityOnISOTime,
MembershipType: "group_member",
Removeable: true,
Removable: true,
CreatedAt: &createdAt,
IsLastOwner: false,
LastLoginAt: &lastLoginAt,
Expand Down

0 comments on commit cc52c83

Please sign in to comment.