Skip to content

Commit

Permalink
Update AudioStationConnector_Tests.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
geloczi committed Dec 30, 2021
1 parent 66be64f commit a17c224
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ private static void CreateTestPlaylist()
Assert.IsNotNull(TestPlaylist);

// Add a few songs to the test playlist
var songsResponse = AudioStation.ListSongsAsync(5, 0, SongQueryAdditional.None, (SongQueryParameter.sort_by, SongSortBy.Random)).Result;
var songsResponse = AudioStation.ListSongsAsync(5, 0, SongQueryAdditional.None).Result;
Assert.IsTrue(songsResponse.Success);
var addSongsResponse = AudioStation.AddSongsToPlaylist(TestPlaylist.ID, songsResponse.Data.Songs.Select(x => x.ID).ToArray()).Result;
Assert.IsTrue(addSongsResponse.Success);
Expand Down

0 comments on commit a17c224

Please sign in to comment.