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 10:50:51 +0200
commit2a1338d26cd4759e5b16a88b032ff7469ef9a4ed (patch)
tree29bb6ad9e87a0b6029285a1b9be59d2453ba7e0b
parent439394c59763ab14264c98f05c8eab8dc0f1bc1a (diff)
downloaderlang-sd_notify-dont_check_versions.tar.gz
Don't check Erlang/OTP versions anymoredont_check_versions
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 4ae437a..8491ef7 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(_) ->
- [].
+ }.