summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-12-17 12:53:48 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-12-17 12:53:48 +0100
commit2716d83a189cdbe48f8dc5b33a25e887f672ad62 (patch)
treeae1ad6a5e0bfa445d937fc86971768330605f66d /src
parent71c717d86bd92cce0111cb7c4975039784f74a71 (diff)
Fix basho/rebar/issues/286
Diffstat (limited to 'src')
-rw-r--r--src/rebar_eunit.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl
index b82da0f..a7f4aca 100644
--- a/src/rebar_eunit.erl
+++ b/src/rebar_eunit.erl
@@ -762,7 +762,6 @@ pause_until_net_kernel_stopped(0) ->
exit(net_kernel_stop_failed);
pause_until_net_kernel_stopped(N) ->
try
- _ = net_kernel:i(),
timer:sleep(100),
pause_until_net_kernel_stopped(N - 1)
catch