Fix coding standards in specs

This commit is contained in:
Thibault Jouan
2015-05-03 22:48:34 +00:00
parent 342f9c5aa4
commit 79c4aef669
3 changed files with 0 additions and 7 deletions

View File

@@ -7,7 +7,6 @@ describe 'API tracks' do
track_1 = create :track_with_sound, name: 'Track 1'
track_2 = create :track, name: 'Track 2'
get api_tracks_path, format: :json
expect(json).to eq(
tracks: [
{
@@ -26,7 +25,6 @@ describe 'API tracks' do
it 'shows a track' do
track = create :track
get api_track_path track, format: :json
expect(json).to eq(
track: {
id: track.id,