浏览代码

Fix whitespace errors in rebar_ct and rebar_eunit

pull/3/head
Tuncer Ayaz 12 年前
父节点
当前提交
f528c397f8
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. +1
    -1
      src/rebar_ct.erl
  2. +1
    -1
      src/rebar_eunit.erl

+ 1
- 1
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)

+ 1
- 1
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])).

正在加载...
取消
保存