From f528c397f85b56471ebd5776b9653045a4515a67 Mon Sep 17 00:00:00 2001 From: Tuncer Ayaz Date: Wed, 22 Aug 2012 19:14:35 +0200 Subject: [PATCH] Fix whitespace errors in rebar_ct and rebar_eunit --- src/rebar_ct.erl | 2 +- src/rebar_eunit.erl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl index 2cb0883c..44f7ec60 100644 --- a/src/rebar_ct.erl +++ b/src/rebar_ct.erl @@ -62,7 +62,7 @@ run_test_if_present(TestDir, LogDir, Config, File) -> case filelib:wildcard(TestDir ++ "/*_SUITE.{beam,erl}") of [] -> ?WARN("~s directory present, but no common_test" - ++ " SUITES - skipping\n", [TestDir]), + ++ " SUITES - skipping\n", [TestDir]), ok; _ -> run_test(TestDir, LogDir, Config, File) diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 9e6d5e42..229a8ccc 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -245,7 +245,7 @@ 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])).