From dfad349bc05bf31306df1911de44377d39bd440b Mon Sep 17 00:00:00 2001 From: Mike Slemmer Date: Sun, 30 Jun 2013 18:25:01 -0700 Subject: [PATCH] fixed test --- spec/jam_ruby/models/recording_spec.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/jam_ruby/models/recording_spec.rb b/spec/jam_ruby/models/recording_spec.rb index 463c56d51..ed1ce9a4e 100644 --- a/spec/jam_ruby/models/recording_spec.rb +++ b/spec/jam_ruby/models/recording_spec.rb @@ -256,10 +256,10 @@ describe Recording do files = mix_manifest["files"] files.should_not be_nil files.length.should == 2 - files.first["codec"].should == "opus" + files.first["codec"].should == "vorbis" files.first["offset"].should == 0 files.first["url"].should == @recording.recorded_tracks.first.url - files.last["codec"].should == "opus" + files.last["codec"].should == "vorbis" files.last["offset"].should == 0 files.last["url"].should == @recording.recorded_tracks.last.url