diff options
author | Björn Gustavsson <[email protected]> | 2017-05-17 11:43:11 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2017-05-17 11:43:11 +0200 |
commit | a1956797340a09cdf35d60cc6ccf255c9173d3f3 (patch) | |
tree | 672ba5f730ab4c44d312f1db0457c39733888495 /erts/emulator/test/mtx_SUITE.erl | |
parent | e7cdadc78c91c457d66e5e63fd4702ad47f2fdaa (diff) | |
download | otp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.tar.gz otp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.tar.bz2 otp-a1956797340a09cdf35d60cc6ccf255c9173d3f3.zip |
Eliminate warning for variable 'Config' being unused
Diffstat (limited to 'erts/emulator/test/mtx_SUITE.erl')
-rw-r--r-- | erts/emulator/test/mtx_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/mtx_SUITE.erl b/erts/emulator/test/mtx_SUITE.erl index 12928ed6d8..0d6ab5cdb2 100644 --- a/erts/emulator/test/mtx_SUITE.erl +++ b/erts/emulator/test/mtx_SUITE.erl @@ -97,7 +97,7 @@ init_per_testcase(_Case, Config) -> wait_deallocations(), Config. -end_per_testcase(_Func, Config) -> +end_per_testcase(_Func, _Config) -> ok. wait_deallocations() -> |