aboutsummaryrefslogtreecommitdiffstats
path: root/id3v2.erl
diff options
context:
space:
mode:
authorMarco Ziener <mziener@lavabit.com>2010-10-13 12:01:28 +0200
committerMarco Ziener <mziener@lavabit.com>2010-10-13 12:01:28 +0200
commit68f420b2468d4881c66548321c46307f7ce5c5fc (patch)
tree0c9e2fe5b846e23e8ab82bddd44d7e45f31b181a /id3v2.erl
parent69c37e13acd820ef48f949afc795bf01d3690ae1 (diff)
downloaderlang-68f420b2468d4881c66548321c46307f7ce5c5fc.tar.gz
erlang-68f420b2468d4881c66548321c46307f7ce5c5fc.tar.xz
erlang-68f420b2468d4881c66548321c46307f7ce5c5fc.zip
Changes
Diffstat (limited to 'id3v2.erl')
-rw-r--r--id3v2.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/id3v2.erl b/id3v2.erl
index 196288a..fc49183 100644
--- a/id3v2.erl
+++ b/id3v2.erl
@@ -421,7 +421,7 @@ v1genre(_) -> "Unknown".
%% Tests
%% ------------------------------------------------------------
--define(TESTPATTERN, "/media/everything/music/The Roots/Things Fall Apart/*.mp3").
+-define(TESTPATTERN, "./ac/*.mp3").
test() ->
Start = now(),
@@ -431,7 +431,7 @@ test() ->
read_files([FN|Rest], Total, Fail) ->
case read_file(FN) of
{ok, Props} ->
- ?DBG({?GV(trck, Props), ?GV(tit2, Props)}),
+ ?DBG({?GV(tpe1, Props), ?GV(tit2, Props)}),
read_files(Rest, Total+1, Fail);
not_found ->
read_files(Rest, Total+1, Fail+1)