Fix: forgot to (*Client)GetNotification's parameter: int64 -> ID
This commit is contained in:
parent
74f003d4a4
commit
fe913e01e5
|
@ -27,9 +27,9 @@ func (c *Client) GetNotifications(ctx context.Context, pg *Pagination) ([]*Notif
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetNotification return notification.
|
// GetNotification return notification.
|
||||||
func (c *Client) GetNotification(ctx context.Context, id int64) (*Notification, error) {
|
func (c *Client) GetNotification(ctx context.Context, id ID) (*Notification, error) {
|
||||||
var notification Notification
|
var notification Notification
|
||||||
err := c.doAPI(ctx, http.MethodGet, fmt.Sprintf("/api/v1/notifications/%d", id), nil, ¬ification, nil)
|
err := c.doAPI(ctx, http.MethodGet, fmt.Sprintf("/api/v1/notifications/%v", id), nil, ¬ification, nil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,17 +40,17 @@ func TestGetNotifications(t *testing.T) {
|
||||||
t.Fatalf("result should be two: %d", len(ns))
|
t.Fatalf("result should be two: %d", len(ns))
|
||||||
}
|
}
|
||||||
if ns[0].ID != "122" {
|
if ns[0].ID != "122" {
|
||||||
t.Fatalf("want %v but %v", 122, ns[0].ID)
|
t.Fatalf("want %v but %v", "122", ns[0].ID)
|
||||||
}
|
}
|
||||||
if ns[1].ID != "123" {
|
if ns[1].ID != "123" {
|
||||||
t.Fatalf("want %v but %v", 123, ns[1].ID)
|
t.Fatalf("want %v but %v", "123", ns[1].ID)
|
||||||
}
|
}
|
||||||
n, err := client.GetNotification(context.Background(), 123)
|
n, err := client.GetNotification(context.Background(), "123")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("should not be fail: %v", err)
|
t.Fatalf("should not be fail: %v", err)
|
||||||
}
|
}
|
||||||
if n.ID != "123" {
|
if n.ID != "123" {
|
||||||
t.Fatalf("want %v but %v", 123, n.ID)
|
t.Fatalf("want %v but %v", "123", n.ID)
|
||||||
}
|
}
|
||||||
err = client.ClearNotifications(context.Background())
|
err = client.ClearNotifications(context.Background())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user