diff options
Diffstat (limited to 'lib/debugger/test/cleanup.erl')
-rw-r--r-- | lib/debugger/test/cleanup.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/debugger/test/cleanup.erl b/lib/debugger/test/cleanup.erl index 29561480d1..7970b53086 100644 --- a/lib/debugger/test/cleanup.erl +++ b/lib/debugger/test/cleanup.erl @@ -26,21 +26,21 @@ -include_lib("common_test/include/ct.hrl"). all() -> -[cleanup]. + [cleanup]. groups() -> []. init_per_group(_GroupName, Config) -> - Config. + Config. end_per_group(_GroupName, Config) -> - Config. + Config. cleanup(_) -> - ?line Mods = int:interpreted(), - ?line ok = int:n(Mods), + Mods = int:interpreted(), + ok = int:n(Mods), case whereis(interpret) of undefined -> ok; |