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:02:27 +0200
commit888f85f73456d95fe7af21ebb856d05ef461ab39 (patch)
treebe350e5c8348851a27dfba9ca768250b72ee8aca
parentcb165d0728a475de04264c967a905dfd3b91f78e (diff)
downloaderlang-sd_notify-888f85f73456d95fe7af21ebb856d05ef461ab39.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(_) ->
- [].
+ }.