summaryrefslogtreecommitdiff
path: root/lib/eunit
diff options
context:
space:
mode:
authorMaxim Fedorov <maximfca@gmail.com>2021-07-02 10:10:35 -0700
committerMaxim Fedorov <dane@whatsapp.com>2021-09-08 17:59:57 -0700
commit525fdc48c0290293a473c21066a4efb9aa96e1bf (patch)
treec3fdcc5499fb525ea554648d234d114f5013b1f1 /lib/eunit
parent5e730312b3e2e44aeb15e3d92b6210390fb46066 (diff)
downloaderlang-525fdc48c0290293a473c21066a4efb9aa96e1bf.tar.gz
test suites: replace ?t: with test_server:
Removing ?t retained for backward compatibility allows to search for test_server callsites easier. Replace ?t:fail and test_server:fail with ct:fail.
Diffstat (limited to 'lib/eunit')
-rw-r--r--lib/eunit/test/eunit_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/eunit/test/eunit_SUITE.erl b/lib/eunit/test/eunit_SUITE.erl
index 5940fd3857..a21fadad71 100644
--- a/lib/eunit/test/eunit_SUITE.erl
+++ b/lib/eunit/test/eunit_SUITE.erl
@@ -49,10 +49,10 @@ end_per_group(_GroupName, Config) ->
Config.
app_test(Config) when is_list(Config) ->
- ok = ?t:app_test(eunit).
+ ok = test_server:app_test(eunit).
appup_test(Config) when is_list(Config) ->
- ok = ?t:appup_test(eunit).
+ ok = test_server:appup_test(eunit).
eunit_test(Config) when is_list(Config) ->
ok = file:set_cwd(code:lib_dir(eunit)),