diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-12-17 12:53:48 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-12-17 12:53:48 +0100 |
commit | 2716d83a189cdbe48f8dc5b33a25e887f672ad62 (patch) | |
tree | ae1ad6a5e0bfa445d937fc86971768330605f66d | |
parent | 71c717d86bd92cce0111cb7c4975039784f74a71 (diff) |
Fix basho/rebar/issues/286
-rw-r--r-- | src/rebar_eunit.erl | 1 |
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 |