Skip to content

Commit

Permalink
Fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
flagbug committed Jun 23, 2014
1 parent 81a7244 commit 95691eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Espera/Espera.Core.Tests/PlaylistTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,9 @@ public void SmokeTest()

playlist.MoveSong(0, 2);

Assert.Equal(songs[0], playlist[1].Song);
Assert.Equal(songs[1], playlist[0].Song);
Assert.Equal(songs[2], playlist[2].Song);
Assert.Equal(songs[2], playlist[1].Song);
Assert.Equal(songs[0], playlist[2].Song);
}

[Fact]
Expand Down

0 comments on commit 95691eb

Please sign in to comment.