mirror of
https://github.com/correl/rebar.git
synced 2024-11-14 19:19:30 +00:00
Remove gratuitous spaces
This commit is contained in:
parent
7810d7bf7c
commit
1b10807193
1 changed files with 5 additions and 5 deletions
|
@ -59,11 +59,11 @@ groups() -> [].
|
||||||
all() ->
|
all() ->
|
||||||
[ {exports, Functions} | _ ] = ?MODULE:module_info(),
|
[ {exports, Functions} | _ ] = ?MODULE:module_info(),
|
||||||
[ FName || {FName, _} <- lists:filter(
|
[ FName || {FName, _} <- lists:filter(
|
||||||
fun ({module_info,_}) -> false ;
|
fun ({module_info,_}) -> false;
|
||||||
({all,_}) -> false ;
|
({all,_}) -> false;
|
||||||
({init_per_suite,1}) -> false ;
|
({init_per_suite,1}) -> false;
|
||||||
({end_per_suite,1}) -> false ;
|
({end_per_suite,1}) -> false;
|
||||||
({_,1}) -> true ;
|
({_,1}) -> true;
|
||||||
({_,_}) -> false
|
({_,_}) -> false
|
||||||
end, Functions)].
|
end, Functions)].
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue