diff options
author | Kiko Fernandez-Reyes <kiko@erlang.org> | 2023-04-21 15:42:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-21 15:42:57 +0200 |
commit | ea65c2c9914f666a4834b543afe75f5e8c9e3a6c (patch) | |
tree | 1d2f86f700db4fe0d846176391c5a939aad51bc8 /lib/inets/test | |
parent | 7b0b6ec4cf75b841d20e16b1f2113a2ba99bfc18 (diff) | |
parent | d4223195bc6c698ed4a9e9560cc1cd92cf236981 (diff) | |
download | erlang-ea65c2c9914f666a4834b543afe75f5e8c9e3a6c.tar.gz |
Merge pull request #7139 from kikofernandez/kiko/dbg/deprecate-stop_clear-function/GH-6903/OTP-18478
Deprecate `stop_clear` function
OTP-18478
Diffstat (limited to 'lib/inets/test')
-rw-r--r-- | lib/inets/test/httpd_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_SUITE.erl b/lib/inets/test/httpd_SUITE.erl index b773459b95..df628257ec 100644 --- a/lib/inets/test/httpd_SUITE.erl +++ b/lib/inets/test/httpd_SUITE.erl @@ -395,7 +395,7 @@ dbg(Case, Config, Status) -> Config; 'end' -> io:format("dbg: stopped~n"), - dbg:stop_clear(), + dbg:stop(), ok end; false -> |