Skip to content

Commit

Permalink
fix: Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
angelobreuer committed Aug 15, 2023
1 parent c3c3782 commit 07c8dfa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Lavalink4NET.Tests/Players/QueuedLavalinkPlayerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public async Task TestPlayerRepeatsTrackIfRepeatModeIsTrackAsync()
var playerModel = new PlayerInformationModel(
GuildId: guildId,
CurrentTrack: new TrackModel(
Data: "track1",
Data: "QAAAMwMABXZpZGVvAAZhdXRob3IAAAAAAAAnEAAFdmlkZW8AAAAAAAZtYW51YWwAAAAAAAAnEA==",
Information: CreateDummyTrack(),
AdditionalInformation: ImmutableDictionary<string, JsonNode>.Empty),
Volume: 1F,
Expand Down Expand Up @@ -395,7 +395,7 @@ public async Task TestPlayerRepeatsTrackIfRepeatModeIsTrackOnSkipAsync()
var playerModel = new PlayerInformationModel(
GuildId: guildId,
CurrentTrack: new TrackModel(
Data: "track1",
Data: "QAAAMwMABXZpZGVvAAZhdXRob3IAAAAAAAAnEAAFdmlkZW8AAAAAAAZtYW51YWwAAAAAAAAnEA==",
Information: CreateDummyTrack(),
AdditionalInformation: ImmutableDictionary<string, JsonNode>.Empty),
Volume: 1F,
Expand All @@ -406,7 +406,7 @@ public async Task TestPlayerRepeatsTrackIfRepeatModeIsTrackOnSkipAsync()
var resultModel = playerModel with
{
CurrentTrack = new TrackModel(
Data: "track1",
Data: "QAAAMwMABXZpZGVvAAZhdXRob3IAAAAAAAAnEAAFdmlkZW8AAAAAAAZtYW51YWwAAAAAAAAnEA==",
Information: CreateDummyTrack(),
AdditionalInformation: ImmutableDictionary<string, JsonNode>.Empty),
};
Expand Down

0 comments on commit 07c8dfa

Please sign in to comment.