summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2019-03-01 20:26:05 +0300
committerMichael Klishin <michael@clojurewerkz.org>2019-03-01 20:26:05 +0300
commit933c176c95be6cec082389b501787797690f51ba (patch)
tree410cfb337d5714371d2c4fcbfaea7d475b1b3d5d
parentc806b07a48ef79b08c54e26a20b41df4b9697e38 (diff)
downloadrabbitmq-server-git-933c176c95be6cec082389b501787797690f51ba.tar.gz
Remove a helper test erlc considers unused, per discussion with @kjnilsson
-rw-r--r--test/test_util.erl11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/test_util.erl b/test/test_util.erl
index 863c094603..7fcf247898 100644
--- a/test/test_util.erl
+++ b/test/test_util.erl
@@ -15,14 +15,3 @@ fake_pid(Node) ->
%% replace it with the incoming node binary
Final = <<131,103, 100, S:16/unsigned, NodeBin/binary, LocalPidData/binary>>,
binary_to_term(Final).
-
--ifdef(TEST).
--include_lib("eunit/include/eunit.hrl").
-
-fake_pid_test(_Config) ->
- Pid = fake_pid(<<"mynode@banana">>),
- ?assertNotEqual(node(Pid), node()),
- ?assert(is_pid(Pid)),
- ok.
-
--endif.