Skip to content

Commit

Permalink
test: fix store_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud committed Jun 1, 2021
1 parent e9a7fd6 commit 1de943b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func TestVK_StoreGetFavoriteStickers(t *testing.T) {
needUserToken(t)

_, err := vkUser.StoreAddStickersToFavorite(api.Params{
"sticker_ids": 1,
"sticker_ids": 9008,
})
noError(t, err)

Expand All @@ -24,7 +24,7 @@ func TestVK_StoreGetFavoriteStickers(t *testing.T) {
assert.NotEmpty(t, res.Items)

_, err = vkUser.StoreRemoveStickersFromFavorite(api.Params{
"sticker_ids": 1,
"sticker_ids": 9008,
})
noError(t, err)
}

0 comments on commit 1de943b

Please sign in to comment.