summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2020-07-06 21:06:07 +0200
committerPeter Lemenkov <lemenkov@gmail.com>2020-07-07 11:18:25 +0200
commit9eb84a464326c8d52bdb6cb251a95e63800f6559 (patch)
treec7bbc72cc58acd1f9c756a8380499c7aedc9f1cb
parentef115fcc70b8ea1d2bfe3f76c478d71a0961ec86 (diff)
downloaderlang-sd_notify-9eb84a464326c8d52bdb6cb251a95e63800f6559.tar.gz
Don't check Erlang/OTP versions anymore
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
-rw-r--r--test/sd_notify_test.erl7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/sd_notify_test.erl b/test/sd_notify_test.erl
index 0281c85..86766bc 100644
--- a/test/sd_notify_test.erl
+++ b/test/sd_notify_test.erl
@@ -4,9 +4,6 @@
sd_notify_test_() ->
- sd_notify_test_local(erlang:system_info(otp_release)).
-
-sd_notify_test_local("19") ->
{ok, CWD} = file:get_cwd(),
FakeNotifyUnixSockName = CWD ++ "/fake-sock-" ++ integer_to_list(erlang:phash2(make_ref())),
{ok, FakeNotifyUnixSock} = gen_udp:open(0, [{ifaddr, {local, FakeNotifyUnixSockName}}, {active, false}, list]),
@@ -28,6 +25,4 @@ sd_notify_test_local("19") ->
]
- };
-sd_notify_test_local(_) ->
- [].
+ }.