spec/model/note_spec.rb in music-transcription-0.15.0 vs spec/model/note_spec.rb in music-transcription-0.16.0
- old
+ new
@@ -136,10 +136,11 @@
end
end
notes.each do |note|
str = note.to_s
- note2 = @note_parser.parse(str).to_note
+ res = @note_parser.parse(str)
+ note2 = res.to_note
note2.should eq(note)
end
end
end