aboutsummaryrefslogtreecommitdiffstats
path: root/server/id3v2.erl
diff options
context:
space:
mode:
Diffstat (limited to 'server/id3v2.erl')
-rw-r--r--server/id3v2.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/id3v2.erl b/server/id3v2.erl
index 196288a..fc49183 100644
--- a/server/id3v2.erl
+++ b/server/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)