Parcourir la source

chore: fix elvis warnings

JianBo He il y a 3 ans
Parent
commit
321ad09882
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3 1
      apps/emqx_exhook/test/emqx_exhook_SUITE.erl

+ 3 - 1
apps/emqx_exhook/test/emqx_exhook_SUITE.erl

@@ -146,7 +146,9 @@ t_error_update_conf(_) ->
     ErrorAnd = #{<<"name">> => Name, <<"url">> => <<"http://127.0.0.1:9001">>},
     {ok, _} = emqx_exhook_mgr:update_config(Path, {add, ErrorAnd}),
 
-    DisableAnd = #{<<"name">> => Name, <<"url">> => <<"http://127.0.0.1:9001">>, <<"enable">> => false},
+    DisableAnd = #{<<"name">> => Name,
+                   <<"url">> => <<"http://127.0.0.1:9001">>,
+                   <<"enable">> => false},
     {ok, _} = emqx_exhook_mgr:update_config(Path, {add, DisableAnd}),
 
     {ok, _} = emqx_exhook_mgr:update_config(Path, {delete, <<"error">>}),