summaryrefslogtreecommitdiff
path: root/inttest/t_custom_config/t_custom_config_rt.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-18 19:29:29 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-08-18 19:29:29 +0200
commitc3c6ee7a55eee41bd45cba728510fec3ec91f855 (patch)
tree03ee660ba0b387c0cc11a2db514599da580245f7 /inttest/t_custom_config/t_custom_config_rt.erl
parent1dfb407bbc20acb41dbe25ed3e40c869a24e5593 (diff)
inttest: fix whitespace errors
Diffstat (limited to 'inttest/t_custom_config/t_custom_config_rt.erl')
-rw-r--r--inttest/t_custom_config/t_custom_config_rt.erl9
1 files changed, 5 insertions, 4 deletions
diff --git a/inttest/t_custom_config/t_custom_config_rt.erl b/inttest/t_custom_config/t_custom_config_rt.erl
index db1b29a..0609abb 100644
--- a/inttest/t_custom_config/t_custom_config_rt.erl
+++ b/inttest/t_custom_config/t_custom_config_rt.erl
@@ -11,16 +11,17 @@ files() ->
run(Dir) ->
retest_log:log(debug, "Running in Dir: ~s~n", [Dir]),
- Ref = retest:sh("./rebar -C custom.config check-deps -vvv", [{async, true}]),
+ Ref = retest:sh("./rebar -C custom.config check-deps -vvv",
+ [{async, true}]),
{ok, Captured} =
retest:sh_expect(Ref,
"DEBUG: Consult config file .*/custom.config.*",
[{capture, all, list}]),
{ok, Missing} =
retest:sh_expect(Ref,
- "DEBUG: Missing deps : \\[\\{dep,bad_name,"
- "boo,\"\\.\",undefined\\}\\]",
- [{capture, all, list}]),
+ "DEBUG: Missing deps : \\[\\{dep,bad_name,"
+ "boo,\"\\.\",undefined\\}\\]",
+ [{capture, all, list}]),
retest_log:log(debug, "[CAPTURED]: ~s~n", [Captured]),
retest_log:log(debug, "[Missing]: ~s~n", [Missing]),
ok.