Skip to content

Commit

Permalink
test: fix TestVK_VideoAddAlbum
Browse files Browse the repository at this point in the history
  • Loading branch information
SevereCloud committed May 29, 2021
1 parent 2d88873 commit e6ddcb5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions api/video_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ func TestVK_VideoAddAlbum(t *testing.T) {

_, err = vkUser.VideoAddToAlbum(api.Params{
"album_id": album.AlbumID,
"owner_id": 2314852,
"video_id": 165705596,
"owner_id": -86529522,
"video_id": 456240750,
})
noError(t, err)

_, err = vkUser.VideoReorderVideos(api.Params{
"album_id": album.AlbumID,
"owner_id": 2314852,
"video_id": 165705596,
"owner_id": -86529522,
"video_id": 456240750,
"after_owner_id": -139533130,
"after_video_id": 456239332,
})
Expand All @@ -80,8 +80,8 @@ func TestVK_VideoAddAlbum(t *testing.T) {

_, err = vkUser.VideoRemoveFromAlbum(api.Params{
"album_id": album.AlbumID,
"owner_id": 2314852,
"video_id": 165705596,
"owner_id": -86529522,
"video_id": 456240750,
})
noError(t, err)

Expand Down

0 comments on commit e6ddcb5

Please sign in to comment.