fixed compiler warning for unused variable in jsx:load_tests(Path)

This commit is contained in:
alisdair sullivan 2010-08-06 06:19:22 -07:00
parent c6d9035e50
commit 57c85a4185

View file

@ -225,7 +225,7 @@ detect_encoding(Bin, Opts) ->
load_tests(Path) ->
%% search the specified directory for any files with the .test ending
TestSpecs = filelib:wildcard("*.test", Path),
Tests = load_tests(TestSpecs, Path, []).
load_tests(TestSpecs, Path, []).
load_tests([], _Dir, Acc) ->
lists:reverse(Acc);