From e96c9ada52049b8210f39eec2939a9956e768280 Mon Sep 17 00:00:00 2001 From: zhongwencool Date: Thu, 13 Jan 2022 16:26:32 +0800 Subject: [PATCH] chore(test): fix typo error --- apps/emqx_management/test/emqx_mgmt_api_SUITE.erl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/emqx_management/test/emqx_mgmt_api_SUITE.erl b/apps/emqx_management/test/emqx_mgmt_api_SUITE.erl index e45acfd42..bbec02722 100644 --- a/apps/emqx_management/test/emqx_mgmt_api_SUITE.erl +++ b/apps/emqx_management/test/emqx_mgmt_api_SUITE.erl @@ -583,7 +583,7 @@ t_data(_) -> ?assertMatch({ok, _}, request_api(post, api_path(["data","import"]), [], auth_header_(), #{<<"filename">> => Filename, <<"node">> => Node})), ?assertMatch({ok, _}, request_api(post, api_path(["data","import"]), [], auth_header_(), #{<<"filename">> => Filename})), application:stop(emqx_rule_engine), - application:stop(emqx_dahboard), + application:stop(emqx_dashboard), ok. t_data_import_content(_) -> @@ -598,7 +598,7 @@ t_data_import_content(_) -> Content = emqx_json:decode(Bin), ?assertMatch({ok, "{\"code\":0}"}, request_api(post, api_path(["data","import"]), [], auth_header_(), Content)), application:stop(emqx_rule_engine), - application:stop(emqx_dahboard). + application:stop(emqx_dashboard). request_api(Method, Url, Auth) -> request_api(Method, Url, [], Auth, []).