aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-12-14 11:23:06 +0100
committerLoïc Hoguin <[email protected]>2017-12-14 11:23:06 +0100
commitbda5630b8770da0f6e99f1617777f3c37fca957c (patch)
tree4a4d0ea25b384d635bc637007fe57ddbdcb6bdd2
parent2dd60838510f834b005c266cab7c657a68239ecf (diff)
downloadgun-bda5630b8770da0f6e99f1617777f3c37fca957c.tar.gz
gun-bda5630b8770da0f6e99f1617777f3c37fca957c.tar.bz2
gun-bda5630b8770da0f6e99f1617777f3c37fca957c.zip
Silence export_all warnings
-rw-r--r--test/fake_transport.erl2
-rw-r--r--test/gun_SUITE.erl1
-rw-r--r--test/sse_SUITE.erl1
-rw-r--r--test/twitter_SUITE.erl1
-rw-r--r--test/ws_SUITE.erl1
5 files changed, 5 insertions, 1 deletions
diff --git a/test/fake_transport.erl b/test/fake_transport.erl
index 0baa9fa..1677e87 100644
--- a/test/fake_transport.erl
+++ b/test/fake_transport.erl
@@ -1,4 +1,4 @@
-module(fake_transport).
--compile(export_all).
+-export([send/2]).
send(_, _) -> ok.
diff --git a/test/gun_SUITE.erl b/test/gun_SUITE.erl
index ead4a81..8fd17c0 100644
--- a/test/gun_SUITE.erl
+++ b/test/gun_SUITE.erl
@@ -14,6 +14,7 @@
-module(gun_SUITE).
-compile(export_all).
+-compile(nowarn_export_all).
-import(ct_helper, [doc/1]).
diff --git a/test/sse_SUITE.erl b/test/sse_SUITE.erl
index a036552..b218fa2 100644
--- a/test/sse_SUITE.erl
+++ b/test/sse_SUITE.erl
@@ -14,6 +14,7 @@
-module(sse_SUITE).
-compile(export_all).
+-compile(nowarn_export_all).
all() ->
[http, http2].
diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl
index 84307a2..931da1b 100644
--- a/test/twitter_SUITE.erl
+++ b/test/twitter_SUITE.erl
@@ -14,6 +14,7 @@
-module(twitter_SUITE).
-compile(export_all).
+-compile(nowarn_export_all).
all() ->
[http, http2].
diff --git a/test/ws_SUITE.erl b/test/ws_SUITE.erl
index 9b70bdf..0630c1b 100644
--- a/test/ws_SUITE.erl
+++ b/test/ws_SUITE.erl
@@ -14,6 +14,7 @@
-module(ws_SUITE).
-compile(export_all).
+-compile(nowarn_export_all).
-import(ct_helper, [config/2]).