diff options
author | Ingela Anderton Andin <ingela@erlang.org> | 2021-09-13 11:05:53 +0200 |
---|---|---|
committer | Ingela Anderton Andin <ingela@erlang.org> | 2021-09-13 11:05:53 +0200 |
commit | cb81260c5884ea69adfbd782b2f46ecadee4b986 (patch) | |
tree | 16e81a6417670df884a53b019bbd4217f910177b /lib/inets | |
parent | 23b14fd522a1b70cc17495f5812a7f0c69b15096 (diff) | |
parent | 483f1b680e27874421c6eab759b7e359face914d (diff) | |
download | erlang-cb81260c5884ea69adfbd782b2f46ecadee4b986.tar.gz |
Merge branch 'maint'
Diffstat (limited to 'lib/inets')
-rw-r--r-- | lib/inets/test/inets_SUITE.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/inets/test/inets_SUITE.erl b/lib/inets/test/inets_SUITE.erl index 0ec3ce86ad..3712c43bc2 100644 --- a/lib/inets/test/inets_SUITE.erl +++ b/lib/inets/test/inets_SUITE.erl @@ -109,12 +109,12 @@ end_per_testcase(_, Config) -> app() -> [{doc, "Test that the inets app file is ok"}]. app(Config) when is_list(Config) -> - ok = ?t:app_test(inets). + ok = test_server:app_test(inets). %%-------------------------------------------------------------------- appup() -> [{doc, "Test that the inets appup file is ok"}]. appup(Config) when is_list(Config) -> - ok = ?t:appup_test(inets). + ok = test_server:appup_test(inets). start_inets() -> [{doc, "Test inets API functions"}]. |