diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-08-22 19:17:17 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-08-22 19:17:17 +0200 |
commit | ff8337f9b0256f3eb85179969b7577ab540714c1 (patch) | |
tree | a9efdb06b7d6572a437b9dcc51b07d9ace98a0f5 /src | |
parent | f528c397f85b56471ebd5776b9653045a4515a67 (diff) |
Fix whitespace error in rebar_eunit
Diffstat (limited to 'src')
-rw-r--r-- | src/rebar_eunit.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 229a8cc..432f5a2 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -245,7 +245,8 @@ get_matching_tests1([Module|TModules], Functions, TestFunctions) -> TestModuleExports = get_beam_test_exports(TestModuleStr), %% Build tests {M, F} list Tests = get_matching_tests2(Functions, {Module, ModuleExports}, - {list_to_atom(TestModuleStr), TestModuleExports}), + {list_to_atom(TestModuleStr), + TestModuleExports}), get_matching_tests1(TModules, Functions, lists:merge([TestFunctions, Tests])). |