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/call_trace_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/call_trace_SUITE.erl')
-rw-r--r-- | erts/emulator/test/call_trace_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/call_trace_SUITE.erl b/erts/emulator/test/call_trace_SUITE.erl index 1216863c51..95171d04ce 100644 --- a/erts/emulator/test/call_trace_SUITE.erl +++ b/erts/emulator/test/call_trace_SUITE.erl @@ -60,7 +60,7 @@ all() -> init_per_testcase(Func, Config) when is_atom(Func), is_list(Config) -> Config. -end_per_testcase(_Func, Config) -> +end_per_testcase(_Func, _Config) -> %% Reloading the module will clear all trace patterns, and %% in a debug-compiled emulator run assertions of the counters %% for the number of traced exported functions in this module. |