diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-15 11:30:04 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-09-15 11:30:04 +0200 |
commit | 4501b5e00786366dcbc97f9c662a5617c325a169 (patch) | |
tree | 3b099f5d3e437d853f07d431c92c89d83bb3fe7d /lib/et/test | |
parent | 91a6512718034889851e12db699f7bb14971ca93 (diff) | |
download | otp-4501b5e00786366dcbc97f9c662a5617c325a169.tar.gz otp-4501b5e00786366dcbc97f9c662a5617c325a169.tar.bz2 otp-4501b5e00786366dcbc97f9c662a5617c325a169.zip |
et: Remove export_all warnings in test
Diffstat (limited to 'lib/et/test')
-rw-r--r-- | lib/et/test/et_test_lib.erl | 2 | ||||
-rw-r--r-- | lib/et/test/ett.erl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/et/test/et_test_lib.erl b/lib/et/test/et_test_lib.erl index df2c308b28..fc469f646a 100644 --- a/lib/et/test/et_test_lib.erl +++ b/lib/et/test/et_test_lib.erl @@ -18,7 +18,7 @@ %% %CopyrightEnd% -module(et_test_lib). --compile(export_all). +-compile([export_all, nowarn_export_all]). -include("et_test_lib.hrl"). diff --git a/lib/et/test/ett.erl b/lib/et/test/ett.erl index b1b769b7ac..2b276eab1a 100644 --- a/lib/et/test/ett.erl +++ b/lib/et/test/ett.erl @@ -18,7 +18,7 @@ %% %CopyrightEnd% -module(ett). --compile(export_all). +-compile([export_all, nowarn_export_all]). %% Modules or suites can be shortcuts, for example wx expands to et_wx_SUITE. %% |