1
0
mirror of synced 2026-05-22 14:43:19 +00:00

Updated unit-tests to reflect change to std. metadata.

This commit is contained in:
Lee Treveil
2010-12-13 16:32:31 +00:00
parent 5bf8b62fdb
commit c5d773af25
+1 -2
View File
@@ -57,7 +57,7 @@ module.exports = testCase({
this.id3.parse();
},
'metadata': function(test){
test.expect(9);
test.expect(8);
this.id3.on('metadata', function(result){
test.equal(result.title, 'Home');
test.equal(result.albumartist, 'Soundtrack');
@@ -67,7 +67,6 @@ module.exports = testCase({
test.equal(result.genre, 'Soundtrack');
test.equal(result.track, 5);
test.equal(result.year, 2004);
test.ok(result.picture);
test.done();
});
this.id3.parse();